Fix userprog tests for clang
[pintos-anon] / src / tests / userprog / bad-jump.c
1 /* This program attempts to execute code at address 0, which is not mapped.
2    This should terminate the process with a -1 exit code. */
3
4 #include "tests/lib.h"
5 #include "tests/main.h"
6
7 typedef int (* volatile functionptr)(void);
8
9 void
10 test_main (void) 
11 {
12   functionptr fp = NULL;
13   msg ("Congratulations - you have successfully called NULL: %d", 
14         fp());
15   fail ("should have exited with -1");
16 }