PKUOS - Pintos
Pintos source browser for PKU Operating System course
src
tests
filesys
extended
dir-rm-parent.c
Go to the documentation of this file.
1
/** Tries to remove a parent of the current directory. This must
2
fail, because that directory is non-empty. */
3
4
#include <syscall.h>
5
#include "
tests/lib.h
"
6
#include "
tests/main.h
"
7
8
void
9
test_main
(
void
)
10
{
11
CHECK
(
mkdir
(
"a"
),
"mkdir \"a\""
);
12
CHECK
(
chdir
(
"a"
),
"chdir \"a\""
);
13
CHECK
(
mkdir
(
"b"
),
"mkdir \"b\""
);
14
CHECK
(
chdir
(
"b"
),
"chdir \"b\""
);
15
CHECK
(!
remove
(
"/a"
),
"remove \"/a\" (must fail)"
);
16
}
test_main
void test_main(void)
Tries to remove a parent of the current directory.
Definition:
dir-rm-parent.c:9
chdir
bool chdir(const char *dir)
Project 4 only.
Definition:
syscall.c:157
remove
bool remove(const char *file)
Definition:
syscall.c:97
mkdir
bool mkdir(const char *dir)
Definition:
syscall.c:163
lib.h
CHECK
#define CHECK(SUCCESS,...)
Takes an expression to test for SUCCESS and a message, which may include printf-style arguments.
Definition:
lib.h:29
main.h
Generated on Thu Nov 4 2021 19:31:01 for PKUOS - Pintos by
1.9.2