diff options
| -rw-r--r-- | sources/ltp-testsuite.patch | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/sources/ltp-testsuite.patch b/sources/ltp-testsuite.patch index 1156fd9d0..ae67f4b1d 100644 --- a/sources/ltp-testsuite.patch +++ b/sources/ltp-testsuite.patch @@ -118,8 +118,8 @@  +	    if (t_ncmp[i].e_res==0) {  +		if ((n = strncmp( t_ncmp[i].s1, t_ncmp[i].s2, t_ncmp[i].n ))  +			!= 0) { -+		    fprintf(temp, "(Strncmp) test %d: expected %d, got %d", -+			    i, t_ncmp[i].e_res, n ); ++		    fprintf(temp, "(Strncmp) test %d: expected 0, got %d", ++			    i, n );  +		    local_flag = FAILED;   		}  -	    i++; @@ -128,8 +128,8 @@  +	    if (t_ncmp[i].e_res>0) {  +		if ((n = strncmp( t_ncmp[i].s1, t_ncmp[i].s2, t_ncmp[i].n ))  +			< 1) { -+		    fprintf(temp, "(Strncmp) test %d: expected %d, got %d", -+			    i, t_ncmp[i].e_res, n ); ++		    fprintf(temp, "(Strncmp) test %d: expected > 0, got %d", ++			    i, n );  +		    local_flag = FAILED;  +		}  +		i++; @@ -137,8 +137,8 @@  +	    if (t_ncmp[i].e_res<0) {  +		if ((n = strncmp( t_ncmp[i].s1, t_ncmp[i].s2, t_ncmp[i].n ))  +			> 1) { -+		    fprintf(temp, "(Strncmp) test %d: expected %d, got %d", -+			    i, t_ncmp[i].e_res, n ); ++		    fprintf(temp, "(Strncmp) test %d: expected < 0, got %d", ++			    i, n );  +		    local_flag = FAILED;  +		}  +		i++; | 
