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();