Simplify instructions by not changing directories for the ctest command

This commit is contained in:
Mark Jansen
2024-09-06 21:51:46 +02:00
committed by Martin Hořeňovský
parent bc63412e2a
commit 77eca4e819
3 changed files with 3 additions and 6 deletions

View File

@@ -12,6 +12,5 @@ rem 3. Run the actual build
cmake --build debug-build
rem 4. Run the tests using CTest
cd debug-build
ctest -j 4 --output-on-failure -C Debug
ctest -j 4 --output-on-failure -C Debug --test-dir debug-build
rem end-snippet

View File

@@ -14,6 +14,5 @@ cmake -B debug-build -S . -DCMAKE_BUILD_TYPE=Debug --preset all-tests
cmake --build debug-build
# 4. Run the tests using CTest
cd debug-build
ctest -j 4 --output-on-failure -C Debug
ctest -j 4 --output-on-failure -C Debug --test-dir debug-build
# end-snippet