We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46830b9 commit 07cf608Copy full SHA for 07cf608
.travis.yml
@@ -19,6 +19,7 @@ matrix:
19
packages:
20
- gfortran
21
- python3-sphinx
22
+ - valgrind
23
- os: linux
24
env: FLIBCPP_DEV=OFF GENERATOR=make
25
FLIBCPP_FORTRAN_STD=f2008
scripts/travis/test.sh
@@ -3,7 +3,12 @@
3
# File : scripts/travis/test.sh
4
###############################################################################
5
6
-cd ${BUILD_ROOT} && ctest --output-on-failure
+cd ${BUILD_ROOT}
7
+
8
+ctest --output-on-failure
9
+if [ "${FLIBCPP_DEV}" = "ON" ]; then
10
+ ctest -E examples -D ExperimentalMemCheck --output-on-failure
11
+fi
12
13
14
# end of scripts/travis/test.sh
0 commit comments