https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=f5940dc449177a3b6216515855964b0c8815954f
commit f5940dc449177a3b6216515855964b0c8815954f Author: Jon Turney <[email protected]> Date: Sun Jul 9 12:12:23 2023 +0100 Cygwin: testsuite: also check direct call in systemcall Check direct call to system(), as well as one in a subprocess. (This is a lot easier to debug when it's completely broken by environment) Diff: --- winsup/testsuite/winsup.api/systemcall.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/winsup/testsuite/winsup.api/systemcall.c b/winsup/testsuite/winsup.api/systemcall.c index d10c9825c..a47586fdb 100644 --- a/winsup/testsuite/winsup.api/systemcall.c +++ b/winsup/testsuite/winsup.api/systemcall.c @@ -26,6 +26,14 @@ main (int argc, char **argv) fprintf (stderr, "couldn't redirect stdout to /dev/null, fd %d - %s\n", fd, strerror (errno)); exit (1); } + + n = system ("ls"); + if (n != 0) + { + fprintf (stderr, "system() call returned %x\n", n); + exit (1); + } + if (pipe (fds)) { fprintf (stderr, "pipe call failed - %s\n", strerror (errno)); @@ -61,7 +69,7 @@ main (int argc, char **argv) } if (n != 0) { - fprintf (stderr, "system() call returned %x\n", n); + fprintf (stderr, "system() call in child process returned %x\n", n); exit (1); } exit (0);
