From 81036b2f80bc16a22e90dc5debeb83ef7947a5d0 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 2 Jan 2004 06:49:18 +0000 Subject: Patch the patch... --- sources/ltp-testsuite.patch | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sources') 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++; -- cgit v1.2.3