aboutsummaryrefslogtreecommitdiff
path: root/tests/unistd/access.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unistd/access.js')
-rw-r--r--tests/unistd/access.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unistd/access.js b/tests/unistd/access.js
new file mode 100644
index 00000000..ea9e6359
--- /dev/null
+++ b/tests/unistd/access.js
@@ -0,0 +1,4 @@
+FS.createDataFile('/', 'forbidden', '', false, false);
+FS.createDataFile('/', 'readable', '', true, false);
+FS.createDataFile('/', 'writeable', '', false, true);
+FS.createDataFile('/', 'allaccess', '', true, true);