summaryrefslogtreecommitdiff
path: root/tests/test-sys_wait.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-05-15 15:59:01 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2013-05-15 20:51:00 -0700
commit0aa13f82eec6df408173dc24df9f05e6f785202f (patch)
tree0ca7336e9c498c8bf455cf19ef370b8265fc7f39 /tests/test-sys_wait.c
parente5a91feeae2136d6de535ed3eb3faae4e7e24b26 (diff)
downloadgnulib-0aa13f82eec6df408173dc24df9f05e6f785202f.tar.gz
spawn-tests, sys_socket-tests, sys_wait-tests: port to clang
* tests/test-spawn.c (main): * tests/test-sys_socket.c (main): * tests/test-sys_wait.c (main): Don't have a switch value that isn't covered by a case.
Diffstat (limited to 'tests/test-sys_wait.c')
-rw-r--r--tests/test-sys_wait.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-sys_wait.c b/tests/test-sys_wait.c
index 4dd2130500..7753da3983 100644
--- a/tests/test-sys_wait.c
+++ b/tests/test-sys_wait.c
@@ -31,17 +31,17 @@ main (void)
if (test_sys_wait_macros ())
return 1;
- switch (0)
- {
#if 0
+ switch (WCONTINUED)
+ {
/* Gnulib doesn't guarantee these, yet. */
case WCONTINUED:
case WEXITED:
case WNOWAIT:
case WSTOPPED:
-#endif
break;
}
+#endif
return a ? 1 : 0;
}