Change the exit status of a fuzz failure to 255 so that if you use it with xargs

the failures don't get suppressed.

svn path=/trunk/; revision=54071
This commit is contained in:
Evan Huus 2013-12-13 22:15:29 +00:00
parent 2d5c1c8689
commit 4cb6a92d93
1 changed files with 1 additions and 1 deletions

View File

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