blob: 0a829f3cb7c67cfe1e7fd9e854ef615c211361fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Opens a file whose name spans the boundary between two pages.
This is valid, so it must succeed. */
#include <syscall.h>
#include "tests/userprog/boundary.h"
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
msg ("create(\"quux.dat\"): %d",
create (copy_string_across_boundary ("quux.dat"), 0));
}
|