summaryrefslogtreecommitdiff
path: root/ext/posix/tests/posix_mknod_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/posix/tests/posix_mknod_basic.phpt')
-rw-r--r--ext/posix/tests/posix_mknod_basic.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/ext/posix/tests/posix_mknod_basic.phpt b/ext/posix/tests/posix_mknod_basic.phpt
deleted file mode 100644
index 568d8d3dc6..0000000000
--- a/ext/posix/tests/posix_mknod_basic.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-posix_mknod(): Basic tests
---SKIPIF--
-<?php
-if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
-if (!function_exists('posix_mknod')) die('skip posix_mknod() not found');
-?>
---FILE--
-<?php
-echo "Basic test of POSIX posix_mknod function\n";
-var_dump(posix_mknod(NULL, NULL, NULL, NULL));
-
-?>
-===DONE====
---EXPECT--
-Basic test of POSIX posix_mknod function
-bool(false)
-===DONE====