update vctest

This commit is contained in:
MihailRis 2024-12-07 17:42:15 +03:00
parent ed4bfeecee
commit 95be0e74b8
2 changed files with 1 additions and 2 deletions

View File

@ -38,7 +38,6 @@ jobs:
run: ctest --output-on-failure --test-dir build
- name: Run engine tests
run: |
tree build
build/vctest/Release/vctest.exe -e build/Release/VoxelEngine.exe -d dev/tests -u build
timeout-minutes: 1
# - name: Package for Windows

View File

@ -135,7 +135,7 @@ static bool run_test(const Config& config, const fs::path& path) {
auto name = path.stem();
std::stringstream ss;
ss << config.executable << " --headless";
ss << fs::canonical(config.executable) << " --headless";
ss << " --test " << path;
ss << " --res " << config.resDir;
ss << " --dir " << config.workingDir;