This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/tests/userprog/create-bound.c

14 lines
337 B
C
Executable file

/* 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));
}