summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_mknod.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/posix/tests/posix_mknod.phpt')
-rw-r--r--ext/posix/tests/posix_mknod.phpt12
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/posix/tests/posix_mknod.phpt b/ext/posix/tests/posix_mknod.phpt
new file mode 100644
index 0000000000..70c7c28de6
--- /dev/null
+++ b/ext/posix/tests/posix_mknod.phpt
@@ -0,0 +1,12 @@
+--TEST--
+posix_mknod(): Basic tests
+--SKIP--
+<?php if (!posix_mknod('posix_mknod')) die('skip posix_mknod() not found'); ?>
+--FILE--
+<?php
+
+var_dump(posix_mknod(NULL, NULL, NULL, NULL));
+
+?>
+--EXPECT--
+bool(false)