Skip to content

Commit

Permalink
Make it more verbose given: https://ctest-ext.readthedocs.io/en/maste…
Browse files Browse the repository at this point in the history
  • Loading branch information
claucece committed Dec 10, 2024
1 parent bd9e97f commit 46887d7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:

- name: Install xsltproc
run: sudo apt-get install -y xsltproc

- name: Install Valgrind
run: |
sudo apt install valgrind
echo "Valgrind installed"
- name: Install Valgrind dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -55,7 +55,7 @@ jobs:
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{env.BUILD_TYPE}}

- name: Examples (opt/avx2)
working-directory: ${{github.workspace}}/build/apps
run: |
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
./example_nistapi_mayo_3
./example_nistapi_mayo_5
if: matrix.mayo_build_type == 'ref'

- name: CT-Tests
run: |
rm -rf build
Expand Down Expand Up @@ -136,25 +136,25 @@ jobs:
rm -rf build
cmake -Bbuild -DCMAKE_BUILD_TYPE=ASAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang
cmake --build build
ctest -V --test-dir build
ctest -VV --test-dir build
- name: Memory Sanitizer MSAN
run: |
rm -rf build
cmake -Bbuild -DCMAKE_BUILD_TYPE=MSAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang
cmake --build build
ctest -V --test-dir build
ctest -VV --test-dir build
- name: Leak Sanitizer LSAN
run: |
rm -rf build
cmake -Bbuild -DCMAKE_BUILD_TYPE=LSAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang
cmake --build build
ctest -V --test-dir build
ctest -VV --test-dir build
- name: Undefined Behavior Sanitizer UBSAN
run: |
rm -rf build
cmake -Bbuild -DCMAKE_BUILD_TYPE=UBSAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang
cmake --build build
ctest -V --test-dir build
ctest -VV --test-dir build

0 comments on commit 46887d7

Please sign in to comment.