File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -44,16 +44,23 @@ jobs:
44
44
-D SUNDIALS_LOGGING_LEVEL=${{matrix.logging_level}} \
45
45
-D ENABLE_ALL_WARNINGS=ON \
46
46
-D ENABLE_WARNINGS_AS_ERRORS=ON \
47
+ -D SUNDIALS_TEST_DEVTESTS=ON \
47
48
-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
49
52
50
53
- name : Build
51
54
# Build your program with the given configuration
52
55
run : cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
53
56
54
57
- 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
57
64
58
65
build_cycle_profiling :
59
66
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments