summaryrefslogtreecommitdiffstats
path: root/src/tests/userprog/child-simple.c
blob: 0d2dacf704f253d352c55288f48156370528c510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Child process run by exec-multiple, exec-one, wait-simple, and
   wait-twice tests.
   Just prints a single message and terminates. */

#include <stdio.h>
#include "tests/lib.h"

const char *test_name = "child-simple";

int
main (void) 
{
  msg ("run");
  return 81;
}