From 66459331ec1ec3641134d037c3957d54ee008a07 Mon Sep 17 00:00:00 2001 From: Darby Johnston Date: Tue, 15 Oct 2024 11:11:05 -0700 Subject: [PATCH] Fix tests --- tests/toucan-test/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/toucan-test/main.cpp b/tests/toucan-test/main.cpp index 8ae331e..5c0f640 100644 --- a/tests/toucan-test/main.cpp +++ b/tests/toucan-test/main.cpp @@ -31,17 +31,17 @@ int main(int argc, char** argv) std::vector searchPath; searchPath.push_back(parentPath); #if defined(_WINDOWS) - searchPath.push_back(parentPath / ".." / ".."); + searchPath.push_back(parentPath / ".." / ".." / ".."); #else // _WINDOWS - searchPath.push_back(parentPath / ".."); + searchPath.push_back(parentPath / ".." / ".."); #endif // _WINDOWS auto host = std::make_shared(searchPath); - //compTest(path); - //propertySetTest(); - //readTest(path); - //imageGraphTest(path, host); - //utilTest(path); + compTest(path); + propertySetTest(); + readTest(path); + imageGraphTest(path, host); + utilTest(path); #if defined(toucan_EDIT) stackTest();