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-exists.c

17 lines
485 B
C
Raw Normal View History

/* Verifies that trying to create a file under a name that
already exists will fail. */
#include <syscall.h>
#include "tests/lib.h"
#include "tests/main.h"
void
test_main (void)
{
CHECK (create ("quux.dat", 0), "create quux.dat");
CHECK (create ("warble.dat", 0), "create warble.dat");
CHECK (!create ("quux.dat", 0), "try to re-create quux.dat");
CHECK (create ("baffle.dat", 0), "create baffle.dat");
CHECK (!create ("warble.dat", 0), "try to re-create quux.dat");
}