diff options
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c index 97dace5..0f409ad 100644 --- a/test/test.c +++ b/test/test.c @@ -870,6 +870,8 @@ int main(int argc, char *argv[]) err += test_open(0, O_RDWR | O_CREAT, 0000); err += test_open(0, O_RDWR | O_CREAT | O_EXCL, 0600); err += test_open(1, O_RDWR | O_CREAT | O_EXCL, 0600); + err += test_open(0, O_RDWR | O_CREAT | O_EXCL, 0000); + err += test_open(1, O_RDWR | O_CREAT | O_EXCL, 0000); unlink(testfile); unlink(testfile2); |