]> granicus.if.org Git - php/commitdiff
Remove redundant posix_getrlimit_basic.phpt
authorNikita Popov <nikita.ppv@gmail.com>
Mon, 18 Jan 2021 09:41:07 +0000 (10:41 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Mon, 18 Jan 2021 09:41:07 +0000 (10:41 +0100)
It is identical to posix_getrlimit.phpt, apart from one extra
message being printed.

ext/posix/tests/posix_getrlimit_basic.phpt [deleted file]

diff --git a/ext/posix/tests/posix_getrlimit_basic.phpt b/ext/posix/tests/posix_getrlimit_basic.phpt
deleted file mode 100644 (file)
index 5787047..0000000
+++ /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====