Skip to content

Commit 07cf608

Browse files
committed
Enable valgrind tests in Travis
1 parent 46830b9 commit 07cf608

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ matrix:
1919
packages:
2020
- gfortran
2121
- python3-sphinx
22+
- valgrind
2223
- os: linux
2324
env: FLIBCPP_DEV=OFF GENERATOR=make
2425
FLIBCPP_FORTRAN_STD=f2008

scripts/travis/test.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
# File : scripts/travis/test.sh
44
###############################################################################
55

6-
cd ${BUILD_ROOT} && ctest --output-on-failure
6+
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
712

813
###############################################################################
914
# end of scripts/travis/test.sh

0 commit comments

Comments
 (0)