Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darbyjohnston committed Oct 15, 2024
1 parent 81574d1 commit 6645933
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/toucan-test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ int main(int argc, char** argv)
std::vector<std::filesystem::path> 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<ImageEffectHost>(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();
Expand Down

0 comments on commit 6645933

Please sign in to comment.