summaryrefslogtreecommitdiff
path: root/ext/posix
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2021-01-18 10:41:07 +0100
committerNikita Popov <nikita.ppv@gmail.com>2021-01-18 10:41:07 +0100
commit35dece02bb17300fd271a463d5d65cf5387e21c3 (patch)
treeda3bec2df011b461fec613f21bf27b3916dab73a /ext/posix
parente8a0ae186ffaa71ff70170ccd9c2e5e444b1a8ba (diff)
downloadphp-git-35dece02bb17300fd271a463d5d65cf5387e21c3.tar.gz
Remove redundant posix_getrlimit_basic.phpt
It is identical to posix_getrlimit.phpt, apart from one extra message being printed.
Diffstat (limited to 'ext/posix')
-rw-r--r--ext/posix/tests/posix_getrlimit_basic.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/posix/tests/posix_getrlimit_basic.phpt b/ext/posix/tests/posix_getrlimit_basic.phpt
deleted file mode 100644
index 57870477f8..0000000000
--- a/ext/posix/tests/posix_getrlimit_basic.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-posix_getrlimit(): Basic tests
---SKIPIF--
-<?php
-if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
-if (!function_exists('posix_getrlimit')) die('skip posix_getrlimit() not found');
-?>
---FILE--
-<?php
-echo "Basic test of POSIX posix_getrlimit function\n";
-var_dump(posix_getrlimit());
-
-?>
-===DONE====
---EXPECTF--
-Basic test of POSIX posix_getrlimit function
-array(%d) {
-%a
-}
-===DONE====