PKUOS - Pintos
Pintos source browser for PKU Operating System course
dir-rmdir.c
Go to the documentation of this file.
1/** Creates and removes a directory, then makes sure that it's
2 really gone. */
3
4#include <syscall.h>
5#include "tests/lib.h"
6#include "tests/main.h"
7
8void
9test_main (void)
10{
11 CHECK (mkdir ("a"), "mkdir \"a\"");
12 CHECK (remove ("a"), "rmdir \"a\"");
13 CHECK (!chdir ("a"), "chdir \"a\" (must return false)");
14}
void test_main(void)
Creates and removes a directory, then makes sure that it's really gone.
Definition: dir-rmdir.c:9
bool chdir(const char *dir)
Project 4 only.
Definition: syscall.c:157
bool remove(const char *file)
Definition: syscall.c:97
bool mkdir(const char *dir)
Definition: syscall.c:163
#define CHECK(SUCCESS,...)
Takes an expression to test for SUCCESS and a message, which may include printf-style arguments.
Definition: lib.h:29