Skip to content

Commit

Permalink
Simplify instructions by not changing directories for the ctest command
Browse files Browse the repository at this point in the history
  • Loading branch information
learn-more committed Sep 6, 2024
1 parent bc63412 commit 6f778fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ 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
```
<sup><a href='/tools/scripts/buildAndTest.sh#L6-L19' title='File snippet `catch2-build-and-test` was extracted from'>snippet source</a> | <a href='#snippet-catch2-build-and-test' title='Navigate to start of snippet `catch2-build-and-test`'>anchor</a></sup>
<!-- endSnippet -->
Expand Down
3 changes: 1 addition & 2 deletions tools/scripts/buildAndTest.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 1 addition & 2 deletions tools/scripts/buildAndTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6f778fb

Please sign in to comment.