From 48d56d8066f322e016d60d486613837e3670dd00 Mon Sep 17 00:00:00 2001 From: Steven Johnson Date: Tue, 20 Sep 2022 12:08:29 -0700 Subject: [PATCH] Temporarily disable testing for apps/fft (#7033) (#7035) Want to avoid reporting this known bug while fix is investigated --- apps/fft/CMakeLists.txt | 16 +++++++++------- apps/fft/Makefile | 20 +++++++++++++------- 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/apps/fft/CMakeLists.txt b/apps/fft/CMakeLists.txt index 95de33cec237..67c08099a098 100644 --- a/apps/fft/CMakeLists.txt +++ b/apps/fft/CMakeLists.txt @@ -43,10 +43,12 @@ set_tests_properties(fft_aot_test PROPERTIES PASS_REGULAR_EXPRESSION "Success!" SKIP_REGULAR_EXPRESSION "\\[SKIP\\]") -foreach (i IN ITEMS 8 12 16 24 32 48) - add_test(NAME bench${i}x${i} COMMAND bench_fft ${i} ${i} "${CMAKE_CURRENT_BINARY_DIR}") - set_tests_properties(bench${i}x${i} - PROPERTIES - LABELS fft - ENVIRONMENT "PATH=$>") -endforeach () +# TODO(srj): temporarily disable pending fix for https://github.com/halide/Halide/issues/7033, +# to avoid unrelated buildbot failures +# foreach (i IN ITEMS 8 12 16 24 32 48) +# add_test(NAME bench${i}x${i} COMMAND bench_fft ${i} ${i} "${CMAKE_CURRENT_BINARY_DIR}") +# set_tests_properties(bench${i}x${i} +# PROPERTIES +# LABELS fft +# ENVIRONMENT "PATH=$>") +# endforeach () diff --git a/apps/fft/Makefile b/apps/fft/Makefile index 99a9547125aa..22772994cb33 100644 --- a/apps/fft/Makefile +++ b/apps/fft/Makefile @@ -75,13 +75,19 @@ clean: fft_aot_test: $(BIN)/$(HL_TARGET)/fft_aot_test $^ -all: fft_aot_test bench_16x16 bench_32x32 bench_48x48 bench_64x64 +# TODO(srj): temporarily disable pending fix for https://github.com/halide/Halide/issues/7033, +# to avoid unrelated buildbot failures +#all: fft_aot_test bench_16x16 bench_32x32 bench_48x48 bench_64x64 +all: fft_aot_test # Ensure these are run sequentially and not in parallel test: $(BIN)/$(HL_TARGET)/bench_fft - $< 8 8 $(