0d2dacf704f253d352c55288f48156370528c510
[pintos-anon] / src / tests / userprog / child-simple.c
1 /* Child process run by exec-multiple, exec-one, wait-simple, and
2    wait-twice tests.
3    Just prints a single message and terminates. */
4
5 #include <stdio.h>
6 #include "tests/lib.h"
7
8 const char *test_name = "child-simple";
9
10 int
11 main (void) 
12 {
13   msg ("run");
14   return 81;
15 }