# HG changeset patch # User thomask # Date 1112259554 0 # Node ID 177ce8d13eac3c81664e7ad3fd03b264fb40c9fc # Parent f1c605ebb8255616ca6494d1b4bfdc1f8214bea3 test cases that unexpectetly fail and in addition fail to provide file/line information are now treated as ERROR instead of FAIL diff -r f1c605ebb825 -r 177ce8d13eac dstress.c --- a/dstress.c Sun Mar 27 18:45:36 2005 +0000 +++ b/dstress.c Thu Mar 31 08:59:14 2005 +0000 @@ -392,7 +392,11 @@ if(res==RETURN_OK){ printf("PASS: \t%s\n", arg[2]); }else if(res==RETURN_FAIL && good_error){ - printf("FAIL: \t%s [%d]\n", arg[2], res); + if(checkErrorMessage(arg[2], "", buffer)){ + printf("FAIL: \t%s [%d]\n", arg[2], res); + }else{ + printf("ERROR:\t%s [%d]\n", arg[2], res); + } }else{ printf("ERROR:\t%s [%d]\n", arg[2], res); }