Added more userprog tests, mostly relating to boundary conditions
[pintos-anon] / src / tests / userprog / exec-bound.c
1 /* Exec a child with an exec string that spans a page boundary. */
2
3 #include <syscall.h>
4 #include "tests/userprog/boundary.h"
5 #include "tests/lib.h"
6 #include "tests/main.h"
7
8 void
9 test_main (void) 
10 {
11   wait (exec (copy_string_across_boundary("child-args arg1 arg2")));
12 }