Skip to content

Commit

Permalink
makefile skip FFTW-related test(s) if FFT=DUCC; would have been caugh…
Browse files Browse the repository at this point in the history
…t in CI if CI tested DUCC :) Fixes #569
  • Loading branch information
ahbarnett committed Sep 26, 2024
1 parent 9e88e80 commit 63bcb4a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,10 @@ test/testutilsf: test/testutils.cpp src/utils_32.o src/utils_precindep.o

# make sure all double-prec test executables ready for testing
TESTS := $(basename $(wildcard test/*.cpp))
# kill off FFTW-specific tests if it's not the FFT we build with...
ifeq ($(FFT),DUCC)
TESTS := $(filter-out $(basename $(wildcard test/*fftw*.cpp)),$(TESTS))
endif
# also need single-prec
TESTS += $(TESTS:%=%f)
test: $(TESTS)
Expand Down

0 comments on commit 63bcb4a

Please sign in to comment.