# HG changeset patch # User thomask # Date 1144999059 0 # Node ID f4fc739bbaafae6aa93d837930883dd08d9f7738 # Parent 80e1b85295b349d464bc2fc17e4a0de36215add1 fixed handling of __DSTRESS_TORTURE_REQUIRE__ diff -r 80e1b85295b3 -r f4fc739bbaaf dstress.c --- a/dstress.c Thu Apr 13 07:34:32 2006 +0000 +++ b/dstress.c Fri Apr 14 07:17:39 2006 +0000 @@ -1234,7 +1234,7 @@ for(index=0; index < sizeof(torture)/sizeof(char*); index++){ if((torture_block_global && strstr(torture[index], torture_block_global)) || (torture_block_case && strstr(torture[index], torture_block_case)) - || (torture_block_case && !strstr(torture[index], torture_require))) + || (torture_require && !strstr(torture[index], torture_require))) { torture_result[index]=RES_UNTESTED; continue;