]> granicus.if.org Git - curl/commitdiff
unify fopen() failure error message among tests, allowing
authorYang Tse <yangsita@gmail.com>
Thu, 5 Apr 2007 11:05:36 +0000 (11:05 +0000)
committerYang Tse <yangsita@gmail.com>
Thu, 5 Apr 2007 11:05:36 +0000 (11:05 +0000)
the testsuite to count them as errors of the same kind

tests/libtest/lib518.c
tests/libtest/lib537.c

index b2aa0554c6a329cc2b8b0b80307b93708a49a9e0..756f301d9e8820dd4d9990ad02c240d7430e01ba 100644 (file)
@@ -409,8 +409,9 @@ static int rlimit(int keep_open)
     sprintf(strbuff1, fmt, num_open.rlim_max);
     sprintf(strbuff, "stdio fopen() fails with %s fds open()",
             strbuff1);
-    store_errmsg(strbuff, 0);
     fprintf(stderr, "%s\n", msgbuff);
+    sprintf(strbuff, "stdio fopen() fails with lots of fds open()");
+    store_errmsg(strbuff, 0);
     close_file_descriptors();
     free(memchunk);
     return -12;
index eecda4626286120fd13d36c56d2ff92f446ce84c..a074bf9940c5283e93f145c39467a9313bcd04f4 100644 (file)
@@ -412,8 +412,9 @@ static int rlimit(int keep_open)
     sprintf(strbuff1, fmt, num_open.rlim_max);
     sprintf(strbuff, "stdio fopen() fails with %s fds open()",
             strbuff1);
-    store_errmsg(strbuff, 0);
     fprintf(stderr, "%s\n", msgbuff);
+    sprintf(strbuff, "stdio fopen() fails with lots of fds open()");
+    store_errmsg(strbuff, 0);
     close_file_descriptors();
     free(memchunk);
     return -10;