Commit 81036b2f authored by Eric Andersen's avatar Eric Andersen
Browse files

Patch the patch...

parent 54b24c22
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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++;