Skip to content

Commit

Permalink
-Wno-format
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental committed Aug 26, 2024
1 parent 58e3eac commit 17ddb4c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions build_tools/ci/build_test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ echo "CTest"
echo "-----"
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
ctest --test-dir "$build_dir" -R amd-aie --output-on-failure -j
elif [[ "$OSTYPE" == "darwin"* ]]; then
ctest --test-dir "$build_dir" -R amd-aie --label-exclude "*pack_peel_pipeline_matmul*" --output-on-failure -j
else
# hack while windows is flaky to get past failing tests
ctest --test-dir "$build_dir" -R amd-aie --output-on-failure -j --repeat until-pass:5
Expand Down
14 changes: 10 additions & 4 deletions runtime/src/iree-amd-aie/aie_runtime/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ iree_cc_test(
NAME
test_0335_aie_dma_tile_dma_packet_switch_mode
SRCS
test_packet_switch_mode.cc
test_packet_switch_mode.cc
COPTS
-Wno-format
DEPS
iree-amd-aie::aie_runtime::iree_aie_runtime_static
)
Expand All @@ -44,7 +46,7 @@ iree_lit_test(
NAME
test_0335_aie_dma_tile_dma_packet_switch_mode_lit_test
TEST_FILE
test_packet_switch_mode.cc
test_packet_switch_mode.cc
TOOLS
::test_0335_aie_dma_tile_dma_packet_switch_mode
FileCheck
Expand All @@ -56,7 +58,9 @@ iree_cc_test(
NAME
test_1114_aie_stream_switch_packet_switch_control_packets
SRCS
test_control_packets.cc
test_control_packets.cc
COPTS
-Wno-format
DEPS
iree-amd-aie::aie_runtime::iree_aie_runtime_static
)
Expand All @@ -65,7 +69,7 @@ iree_lit_test(
NAME
test_1114_aie_stream_switch_packet_switch_control_packets_lit_test
TEST_FILE
test_control_packets.cc
test_control_packets.cc
TOOLS
::test_1114_aie_stream_switch_packet_switch_control_packets
FileCheck
Expand All @@ -78,6 +82,8 @@ iree_cc_test(
test_transaction
SRCS
test_transaction.cc
COPTS
-Wno-format
DEPS
iree-amd-aie::aie_runtime::iree_aie_runtime_static
)
Expand Down

0 comments on commit 17ddb4c

Please sign in to comment.