summaryrefslogtreecommitdiff
path: root/Tests/Kernel/path-resolution-race.cpp
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-08-01 21:18:32 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-02 17:15:36 +0200
commit29eceebdbf78f94d2993ab476a076a6fe82b4131 (patch)
tree51c9284103ab6596d7549964d8ef4cc37502479a /Tests/Kernel/path-resolution-race.cpp
parent538b985487fd958a7e8663a32867ac39d6643d04 (diff)
downloadserenity-29eceebdbf78f94d2993ab476a076a6fe82b4131.zip
Tests: Build automatically, fix compilation errors
Diffstat (limited to 'Tests/Kernel/path-resolution-race.cpp')
-rw-r--r--Tests/Kernel/path-resolution-race.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/Tests/Kernel/path-resolution-race.cpp b/Tests/Kernel/path-resolution-race.cpp
deleted file mode 100644
index 804fbc1b52..0000000000
--- a/Tests/Kernel/path-resolution-race.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <unistd.h>
-#include <sys/stat.h>
-
-int main()
-{
- if (!fork()) {
- for (;;) {
- mkdir("/tmp/x", 0666);
- rmdir("/tmp/x");
- }
- }
- for (;;) {
- chdir("/tmp/x");
- }
- return 0;
-}