Change the exit status of a fuzz failure to 255 so that if you use it with xargs
authoreapache <eapache@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 13 Dec 2013 22:15:29 +0000 (22:15 +0000)
committereapache <eapache@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 13 Dec 2013 22:15:29 +0000 (22:15 +0000)
the failures don't get suppressed.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@54071 f5534014-38df-0310-8fa8-9805f1628bb7

tools/test-common.sh

index ccd874d201ce9ecf9f5a2e4a1f6b2ac4cafa8e40..3fad699169682911135251d3f9795541245b8ad5 100644 (file)
@@ -164,5 +164,5 @@ function exit_error() {
     echo -e "stderr follows:\n"
     cat $TMP_DIR/$ERR_FILE
 
-    exit 1
+    exit 255
 }