Skip to content

Commit 53aad05

Browse files
Run speed comparisons in debug tests (#6)
1 parent 6d9a1ef commit 53aad05

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

test/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
include(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/CPM.cmake)
22

3-
CPMAddPackage("gh:juce-framework/juce#8.0.6")
3+
CPMAddPackage(
4+
NAME juce
5+
GIT_REPOSITORY https://github.com/juce-framework/juce
6+
GIT_TAG 8.0.7
7+
OPTIONS "JUCE_MODULES_ONLY ON"
8+
)
49
CPMAddPackage("gh:Chowdhury-DSP/chowdsp_utils#next")
510
CPMAddPackage("gh:Chowdhury-DSP/chowdsp_fft#main")
611

test/chowdsp_convolution_test.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,12 +658,10 @@ int main()
658658
success &= test_convolution_non_uniform (6000, 32, 400, 1024);
659659
success &= test_convolution_non_uniform (200, 32, 10, 64);
660660

661-
#if BUILD_RELEASE
662661
std::cout << "Speed comparisons:\n";
663662
success &= test_convolution (48'000, 512, 10'000, false);
664663
success &= test_convolution (48'000, 512, 10'000, true);
665664
success &= test_convolution_non_uniform (48'000, 512, 10'000, 2048);
666-
#endif
667665

668666
return success ? 0 : 1;
669667
}

0 commit comments

Comments
 (0)