summaryrefslogtreecommitdiffstats
path: root/pintos-progos/tests/vm/child-mm-wrt.c
diff options
context:
space:
mode:
Diffstat (limited to 'pintos-progos/tests/vm/child-mm-wrt.c')
-rw-r--r--pintos-progos/tests/vm/child-mm-wrt.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/pintos-progos/tests/vm/child-mm-wrt.c b/pintos-progos/tests/vm/child-mm-wrt.c
new file mode 100644
index 0000000..8419788
--- /dev/null
+++ b/pintos-progos/tests/vm/child-mm-wrt.c
@@ -0,0 +1,24 @@
1/* Child process of mmap-exit.
2 Mmaps a file and writes to it via the mmap'ing, then exits
3 without calling munmap. The data in the mapped region must be
4 written out at program termination. */
5
6#include <string.h>
7#include <syscall.h>
8#include "tests/vm/sample.inc"
9#include "tests/lib.h"
10#include "tests/main.h"
11
12#define ACTUAL ((void *) 0x10000000)
13
14void
15test_main (void)
16{
17 int handle;
18
19 CHECK (create ("sample.txt", sizeof sample), "create \"sample.txt\"");
20 CHECK ((handle = open ("sample.txt")) > 1, "open \"sample.txt\"");
21 CHECK (mmap (handle, ACTUAL) != MAP_FAILED, "mmap \"sample.txt\"");
22 memcpy (ACTUAL, sample, sizeof sample);
23}
24