summaryrefslogtreecommitdiffstats
path: root/pintos-progos/tests/userprog/exec-missing.c
diff options
context:
space:
mode:
Diffstat (limited to 'pintos-progos/tests/userprog/exec-missing.c')
-rw-r--r--pintos-progos/tests/userprog/exec-missing.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/pintos-progos/tests/userprog/exec-missing.c b/pintos-progos/tests/userprog/exec-missing.c
deleted file mode 100644
index bf08cad..0000000
--- a/pintos-progos/tests/userprog/exec-missing.c
+++ /dev/null
@@ -1,12 +0,0 @@
1/* Tries to execute a nonexistent process.
2 The exec system call must return -1. */
3
4#include <syscall.h>
5#include "tests/lib.h"
6#include "tests/main.h"
7
8void
9test_main (void)
10{
11 msg ("exec(\"no-such-file\"): %d", exec ("no-such-file"));
12}