diff options
author | Fabian Groffen <grobian@gentoo.org> | 2020-05-17 10:44:03 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2020-05-17 10:44:03 +0200 |
commit | 0e665655ea718a92147c8bd9694256da3152a8d7 (patch) | |
tree | dfd3e2d7163bb3a1266a534e9ae03f60f2985bd2 /tests | |
parent | travis: address build config validation issues (diff) | |
download | portage-utils-0e665655ea718a92147c8bd9694256da3152a8d7.tar.gz portage-utils-0e665655ea718a92147c8bd9694256da3152a8d7.tar.bz2 portage-utils-0e665655ea718a92147c8bd9694256da3152a8d7.zip |
travis: disable qcheck for valgrind too
it's really a shame that valgrind crashes so often in the travis setup
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/init.sh.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/init.sh.in b/tests/init.sh.in index 5ffc7ef..8b67070 100644 --- a/tests/init.sh.in +++ b/tests/init.sh.in @@ -32,10 +32,11 @@ export TZ='UTC 0' q -i -q # inject valgrind wrapper if necessary, unfortunately valgrind on Ubuntu -# used by Travis segfaults on qmanifest, so disable there to be able to -# run the rest regularly +# used by Travis segfaults on qmanifest and qcheck, so disable there to +# be able to run the rest regularly dovalgrind=${Q_RUN_WITH_VALGRIND} [[ ${TRAVIS_OS_NAME}:${as##*/} == linux:qmanifest ]] && dovalgrind= +[[ ${TRAVIS_OS_NAME}:${as##*/} == linux:qcheck ]] && dovalgrind= if [[ -n ${dovalgrind} ]] ; then chmod 755 "@abs_top_srcdir@/tests/valgrind-wrapper/qvalgrind" for f in @abs_top_builddir@/q?* ; do |