Skip to content

Commit 09e88ed

Browse files
committed
diff logging output
1 parent dee2a29 commit 09e88ed

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/ubuntu-clang-latest.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,23 @@ jobs:
4444
-D SUNDIALS_LOGGING_LEVEL=${{matrix.logging_level}} \
4545
-D ENABLE_ALL_WARNINGS=ON \
4646
-D ENABLE_WARNINGS_AS_ERRORS=ON \
47+
-D SUNDIALS_TEST_DEVTESTS=ON \
4748
-D SUNDIALS_TEST_UNITTESTS=ON \
48-
-D SUNDIALS_TEST_ENABLE_GTEST=OFF
49+
-D SUNDIALS_TEST_ENABLE_GTEST=OFF \
50+
-D SUNDIALS_TEST_FLOAT_PRECISION=4 \
51+
-D SUNDIALS_TEST_INTEGER_PRECISION=10
4952
5053
- name: Build
5154
# Build your program with the given configuration
5255
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
5356

5457
- name: Test
55-
# Run logging tests (runs test but does not diff the outputs)
56-
run: ctest --test-dir ${{github.workspace}}/build --label-regex Logging
58+
# Run logging tests
59+
run: |
60+
ctest \
61+
--test-dir ${{github.workspace}}/build \
62+
--label-regex Logging \
63+
--verbose
5764
5865
build_cycle_profiling:
5966
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)