summaryrefslogtreecommitdiffstats
path: root/pintos-progos/tests/userprog/wait-twice.c
diff options
context:
space:
mode:
Diffstat (limited to 'pintos-progos/tests/userprog/wait-twice.c')
-rw-r--r--pintos-progos/tests/userprog/wait-twice.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/pintos-progos/tests/userprog/wait-twice.c b/pintos-progos/tests/userprog/wait-twice.c
new file mode 100644
index 0000000..785e684
--- /dev/null
+++ b/pintos-progos/tests/userprog/wait-twice.c
@@ -0,0 +1,15 @@
1/* Wait for a subprocess to finish, twice.
2 The first call must wait in the usual way and return the exit code.
3 The second wait call must return -1 immediately. */
4
5#include <syscall.h>
6#include "tests/lib.h"
7#include "tests/main.h"
8
9void
10test_main (void)
11{
12 pid_t child = exec ("child-simple");
13 msg ("wait(exec()) = %d", wait (child));
14 msg ("wait(exec()) = %d", wait (child));
15}