pthread_sigmask tests: Avoid a compiler warning.
authorBruno Haible <bruno@clisp.org>
Sat, 9 Jul 2011 00:00:59 +0000 (02:00 +0200)
committerBruno Haible <bruno@clisp.org>
Sat, 9 Jul 2011 00:00:59 +0000 (02:00 +0200)
* tests/test-pthread_sigmask1.c (main): Complain if system() returns
non-zero.

ChangeLog
tests/test-pthread_sigmask1.c

index 919c98f2aa17b093995fae619f2b5c866a2909a4..e3e802e78ddd1c0eb6af1d4bc1c9ac79b21ca821 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-07-08  Bruno Haible  <bruno@clisp.org>
 
+       pthread_sigmask tests: Avoid a compiler warning.
+       * tests/test-pthread_sigmask1.c (main): Complain if system() returns
+       non-zero.
+
        sigprocmask tests: A better way to avoid a compiler warning.
        * tests/test-sigprocmask.c: Don't include "ignore-value.h".
        (main): Complain if system() returns non-zero.
index d09c216e07b7ddf88def5e680c8667b3aa6e8b7f..f746ec14894c1ee5225a7c6edb3b7ee85bde6524 100644 (file)
@@ -60,7 +60,7 @@ main (int argc, char *argv[])
 
   /* Request a SIGINT signal from outside.  */
   sprintf (command, "sh -c 'sleep 1; kill -%d %d' &", SIGINT, pid);
-  system (command);
+  ASSERT (system (command) == 0);
 
   /* Wait.  */
   sleep (2);