diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-14 03:02:28 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-14 03:02:28 +0200 |
commit | e5acbca0e84b0b1d350d20372016436d7708afe1 (patch) | |
tree | 0812b39b7f82ea35ae5fad770fa8fa6aa7b5d1b8 | |
parent | 93556d67437bc91a5bcffa699a10b1323d977d11 (diff) | |
download | serenity-e5acbca0e84b0b1d350d20372016436d7708afe1.zip |
Disable the "create /empty" test path for now.
-rw-r--r-- | VirtualFileSystem/test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/VirtualFileSystem/test.cpp b/VirtualFileSystem/test.cpp index e95975dd3b..e7ff504563 100644 --- a/VirtualFileSystem/test.cpp +++ b/VirtualFileSystem/test.cpp @@ -30,8 +30,8 @@ int main(int c, char** v) return 1; } - auto newFile = vfs.create("/empty"); - printf("vfs.create: %p\n", newFile.ptr()); + //auto newFile = vfs.create("/empty"); + //printf("vfs.create: %p\n", newFile.ptr()); //return 0; if (!strcmp(v[0], "./vcat")) { |