-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff_output.txt
More file actions
35 lines (33 loc) · 3.15 KB
/
diff_output.txt
File metadata and controls
35 lines (33 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 78e6f1e..6d4ca32 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -361,6 +361,8 @@ if(BUILD_TESTING)
tests/unit/StemSeparatorTests.cpp
tests/regression/RegressionHarness.cpp
tests/regression/RegressionHarnessTests.cpp
+ src/app/ui/TaskCenterPanel.cpp
+ src/app/style/AutoMixLookAndFeel.cpp
src/app/controllers/ModelController.cpp
src/app/controllers/ImportController.cpp
src/app/controllers/ExportController.cpp
@@ -372,7 +374,7 @@ if(BUILD_TESTING)
)
target_include_directories(automix_tests PRIVATE src tests/regression)
- target_link_libraries(automix_tests PRIVATE automix_core Catch2::Catch2WithMain)
+ target_link_libraries(automix_tests PRIVATE automix_core Catch2::Catch2WithMain juce::juce_gui_extra)
target_compile_definitions(automix_tests PRIVATE
AUTOMIX_SOURCE_DIR="${CMAKE_SOURCE_DIR}"
JUCE_MODAL_LOOPS_PERMITTED=1
diff --git a/tests/unit/OnnxModelInferenceTests.cpp b/tests/unit/OnnxModelInferenceTests.cpp
index 5acedb6..f8ca2c3 100644
--- a/tests/unit/OnnxModelInferenceTests.cpp
+++ b/tests/unit/OnnxModelInferenceTests.cpp
@@ -54,7 +54,7 @@ TEST_CASE("ONNX inference backend validates model load and schema", "[ai][onnx]"
REQUIRE(resultA.usedModel);
REQUIRE(resultB.usedModel);
REQUIRE(resultA.outputs == resultB.outputs);
- REQUIRE(inference.backendDiagnostics().find("calls=2") != std::string::npos);
+ REQUIRE(inference.backendDiagnostics().find("calls=3") != std::string::npos);
std::filesystem::remove_all(tempDir);
#endif