Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/testsuite/ChangeLog4
-rw-r--r--winsup/testsuite/winsup.api/ltp/stat03.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/winsup/testsuite/ChangeLog b/winsup/testsuite/ChangeLog
index bd86f70bd..6c42e4e41 100644
--- a/winsup/testsuite/ChangeLog
+++ b/winsup/testsuite/ChangeLog
@@ -1,5 +1,9 @@
2001-10-29 Egor Duda <deo@logos-m.ru>
+ * winsup.api/ltp/stat03.c: Supress compiler warning.
+
+2001-10-29 Egor Duda <deo@logos-m.ru>
+
* winsup.api/signal-into-win32-api.c: Supress compiler warning.
Mon Oct 8 14:15:00 2001 Corinna Vinschen <corinna@vinschen.de>
diff --git a/winsup/testsuite/winsup.api/ltp/stat03.c b/winsup/testsuite/winsup.api/ltp/stat03.c
index a1a94279f..2d04ec4fc 100644
--- a/winsup/testsuite/winsup.api/ltp/stat03.c
+++ b/winsup/testsuite/winsup.api/ltp/stat03.c
@@ -187,14 +187,14 @@ main(int ac, char **av)
"stat() fails, %s, errno:%d",
test_desc, TEST_ERRNO);
} else {
- tst_resm(TFAIL, "stat() fails, %s,
- errno:%d, expected errno:%d",
+ tst_resm(TFAIL, "stat() fails, %s,"
+ " errno:%d, expected errno:%d",
test_desc, TEST_ERRNO,
Test_cases[ind].exp_errno);
}
} else {
- tst_resm(TFAIL, "stat(2) returned %d,
- expected -1, errno:%d", TEST_RETURN,
+ tst_resm(TFAIL, "stat(2) returned %d,"
+ " expected -1, errno:%d", TEST_RETURN,
Test_cases[ind].exp_errno);
}
} /* End of TEST CASE LOOPING. */