diff options
author | Anthony Pesch <inolen@gmail.com> | 2013-07-18 09:46:58 -0700 |
---|---|---|
committer | Anthony Pesch <inolen@gmail.com> | 2013-08-05 12:36:50 -0700 |
commit | 4241aed98252e6bbb5fa1caaa3a1c9415ff6b03f (patch) | |
tree | db6d9a989fd1fa56cee932ad3c98f1335959b2d4 | |
parent | 0ddff9d01bb77f7cbcb054b23cb86fc0c2bd18d5 (diff) |
enable permissions checks after initialization
-rw-r--r-- | tests/filesystem/src.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/filesystem/src.js b/tests/filesystem/src.js index 801b45d6..ceea348d 100644 --- a/tests/filesystem/src.js +++ b/tests/filesystem/src.js @@ -8,6 +8,7 @@ FS.createDevice('/def', 'deviceB', function() {}, function() {}); FS.createLink('/abc', 'localLink', '123', true, true); FS.createLink('/abc', 'rootLink', '/', true, true); FS.createLink('/abc', 'relativeLink', '../def', true, true); +FS.ignorePermissions = false; function explore(path) { Module.print(path); |