summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-02-04 10:34:05 +0100
committerThomas Haller <thaller@redhat.com>2015-02-06 12:58:42 +0100
commit9a2c0451a48090399c0fc9f6fae34824e3b42841 (patch)
tree009c24ee133799935e22ad3850f7ab44c83e014c /tools
parent14040b1cea0ca20bd29c9a584ddb6424de6417ca (diff)
downloadNetworkManager-9a2c0451a48090399c0fc9f6fae34824e3b42841.tar.gz
tests: fix valgrind script to handle exit value 77 (skip)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run-test-valgrind.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run-test-valgrind.sh b/tools/run-test-valgrind.sh
index 506fff75c4..84659fc85b 100755
--- a/tools/run-test-valgrind.sh
+++ b/tools/run-test-valgrind.sh
@@ -19,7 +19,7 @@ $LIBTOOL --mode=execute "$VALGRIND" \
"$TEST"
RESULT=$?
-if [ $RESULT -ne 0 ]; then
+if [ $RESULT -ne 0 -a $RESULT -ne 77 ]; then
echo "Don't forget to check the valgrind log at '`realpath $LOGFILE`'." >&2
fi