]> granicus.if.org Git - php/commitdiff
Remove superfluous PHP version check in tests
authorGabriel Caruso <carusogabriel34@gmail.com>
Sat, 3 Feb 2018 15:51:22 +0000 (13:51 -0200)
committerNikita Popov <nikita.ppv@gmail.com>
Sun, 4 Feb 2018 15:58:54 +0000 (16:58 +0100)
Also remove tests that target only old PHP versions.

18 files changed:
ext/date/tests/DateTimeZone_getLocation.phpt
ext/hash/tests/hash_update_stream.phpt
ext/mysqli/tests/mysqli_class_mysqli_driver_reflection.phpt
ext/mysqli/tests/mysqli_class_mysqli_result_reflection.phpt
ext/mysqli/tests/mysqli_class_mysqli_warning_reflection.phpt
ext/phar/tests/fopen.phpt
ext/phar/tests/fopen5.2.phpt [deleted file]
ext/phar/tests/fopen_edgecases2.phpt
ext/phar/tests/stat2.phpt [deleted file]
ext/phar/tests/stat2_5.3.phpt
ext/sockets/tests/bug46360.phpt
ext/standard/tests/forward_static_call_array.phpt
ext/standard/tests/network/gethostname.phpt
ext/standard/tests/streams/stream_get_transports.phpt
ext/standard/tests/streams/stream_get_wrappers.phpt
ext/standard/tests/streams/stream_socket_get_name.phpt
ext/standard/tests/streams/stream_socket_recvfrom.phpt
ext/standard/tests/versioning/phpversion.phpt

index 011f0460f3a171b7da9fe938d983048aaa2937e6..06d22820f1cbf454ebd2366d31c1e8aca4e246fb 100644 (file)
@@ -2,12 +2,6 @@
 DateTimeZone::getLocation -- timezone_location_get — Returns location information for a timezone public array DateTimeZone::getLocation ( void ) ;
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-  die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 $arrayDate = DateTimeZone::listAbbreviations();
@@ -22,7 +16,7 @@ foreach($arrayDate as $value){
 
         if((!in_array($timeZoneArray['country_code'], $countryCode)) && (NULL != $timeZoneArray['country_code']) && ("" != $timeZoneArray['country_code'])) {
             array_push($countryCode, $timeZoneArray['country_code']);
-            
+
             if(in_array($timeZoneArray['country_code'], $countryCodeTest)){
                 print_r($timeZoneArray);
             }
index b628b9c9129c314a7ada44792377c88a5475d942..7a74313448283686ee594644884d125807ee0016 100644 (file)
@@ -4,9 +4,6 @@ int hash_update_stream ( resource $context , resource $handle [, int $length = -
 marcosptf - <marcosptf@yahoo.com.br> - @phpsp - sao paulo - br
 --SKIPIF--
 <?php
-if (phpversion() < "5.3.0") {
-    die('SKIP php version so lower.');
-}
 require_once(dirname(__FILE__) . '/skip_mhash.inc'); ?>
 ?>
 --FILE--
index 2e6d9c2fd1c723f903e8d4547919fa2ae07074ad..11c3492817ff770eb1e49fdccad8b176371b8f65 100644 (file)
@@ -5,8 +5,6 @@ Interface of the class mysqli_driver - Reflection
 require_once('skipif.inc');
 require_once('skipifemb.inc');
 require_once('connect.inc');
-if (($tmp = substr(PHP_VERSION, 0, strpos(PHP_VERSION, '.'))) && ($tmp < 5))
-       die("skip Reflection not available before PHP 5 (found PHP $tmp)");
 
 /*
 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
index 89be46fb8a6c68eeb695faa52600f6ae134f4b7c..75a8e8cfcbcde516dbe2847dc5172c5ae7b644b2 100644 (file)
@@ -7,9 +7,6 @@ require_once('skipifemb.inc');
 require_once('skipifconnectfailure.inc');
 require_once('connect.inc');
 
-if (($tmp = substr(PHP_VERSION, 0, strpos(PHP_VERSION, '.'))) && ($tmp < 5))
-       die("skip Reflection not available before PHP 5 (found PHP $tmp)");
-
 /*
 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
 Most of the things which we test are covered by mysqli_class_*_interface.phpt.
index dc0c14e6e881299e2d8e9710dfc906051405a13a..8ad12737a7f446cb6afdcd0e4d0b0882202bb14d 100644 (file)
@@ -6,9 +6,6 @@ require_once('skipif.inc');
 require_once('skipifemb.inc');
 require_once('connect.inc');
 
-if (($tmp = substr(PHP_VERSION, 0, strpos(PHP_VERSION, '.'))) && ($tmp < 5))
-       die("skip Reflection not available before PHP 5 (found PHP $tmp)");
-
 /*
 Let's not deal with cross-version issues in the EXPECTF/UEXPECTF.
 Most of the things which we test are covered by mysqli_class_*_interface.phpt.
index 5b694d6e2de4cb9a656fb8e5ffab4af02add6c57..b55bc59c84326652a35c560aaa9ddc9d4dc33c19 100644 (file)
@@ -2,7 +2,6 @@
 Phar: test fopen() interception
 --SKIPIF--
 <?php if (!extension_loaded("phar")) die("skip");?>
-<?php if (substr(phpversion(), 0, 3) == '5.2') die("skip PHP >= 5.3 required for this test");?>
 --INI--
 phar.require_hash=1
 phar.readonly=0
@@ -40,4 +39,4 @@ include $fname;
 Warning: fopen() expects at least 2 parameters, 0 given in %sfopen.php on line %d
 hihi
 Warning: fopen(notfound.txt): failed to open stream: No such file or directory in phar://%sfopen.phar.php/index.php on line %d
-===DONE===
\ No newline at end of file
+===DONE===
diff --git a/ext/phar/tests/fopen5.2.phpt b/ext/phar/tests/fopen5.2.phpt
deleted file mode 100644 (file)
index aa064f1..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
---TEST--
-Phar: test fopen() interception
---SKIPIF--
-<?php if (!extension_loaded("phar")) die("skip");?>
-<?php if (substr(phpversion(), 0, 3) != '5.2') die("skip PHP 5.2 required for this test");?>
---INI--
-phar.require_hash=1
-phar.readonly=0
---FILE--
-<?php
-Phar::interceptFileFuncs();
-$a = fopen(__FILE__, 'rb'); // this satisfies 1 line of code coverage
-fclose($a);
-$a = fopen(); // this satisfies another line of code coverage
-
-$fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.php';
-$a = new Phar($fname);
-$a['index.php'] = '<?php
-$a = fopen("dir/file1.txt", "r");
-echo fread($a, 2);
-fclose($a);
-$a = fopen("file1.txt", "r", true);
-echo fread($a, 2);
-fclose($a);
-$a = fopen("notfound.txt", "r", true);
-?>';
-$a['dir/file1.txt'] = 'hi';
-$a['dir/file2.txt'] = 'hi2';
-$a['dir/file3.txt'] = 'hi3';
-$a->setStub('<?php
-set_include_path("phar://" . __FILE__ . "/dir" . PATH_SEPARATOR . "phar://" . __FILE__);
-include "index.php";
-__HALT_COMPILER();');
-include $fname;
-?>
-===DONE===
---CLEAN--
-<?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?>
---EXPECTF--
-Warning: fopen() expects at least 2 parameters, 0 given in %sfopen5.2.php on line %d
-hihi
-Warning: fopen(phar://%sfopen5.2.phar.php/notfound.txt): failed to open stream: phar error: "notfound.txt" is not a file in phar "%sfopen5.2.phar.php" in phar://%sfopen5.2.phar.php/index.php on line %d
-===DONE===
\ No newline at end of file
index 4510fbd80155c7b1ddf0355d02410104177c9879..4ac529a4e00f07cf2a5ade6bc95dbae5f24dc018 100644 (file)
@@ -2,7 +2,6 @@
 Phar: test edge cases of fopen() function interception #2
 --SKIPIF--
 <?php if (!extension_loaded("phar")) die("skip"); ?>
-<?php if (version_compare(phpversion(), '6.0', '>=')) die('skip parameter parsing changed in 6.0'); ?>
 --INI--
 phar.readonly=0
 --FILE--
diff --git a/ext/phar/tests/stat2.phpt b/ext/phar/tests/stat2.phpt
deleted file mode 100644 (file)
index defda71..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
---TEST--
-Phar: test stat function interceptions and is_file/is_link edge cases (PHP 5.2)
---SKIPIF--
-<?php if (!extension_loaded("phar")) die("skip");?>
-<?php if (substr(phpversion(), 0, 3) != '5.2') die("skip PHP 5.2 required for this test");?>
---INI--
-phar.readonly=0
-phar.require_hash=0
---FILE--
-<?php
-Phar::interceptFileFuncs();
-is_file();
-is_link();
-var_dump(is_file(__FILE__));
-
-$fname2 = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.tar';
-$fname3 = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.tar';
-copy(dirname(__FILE__) . '/tar/files/links.tar', $fname2);
-$a = new PharData($fname2);
-$b = $a->convertToExecutable();
-unset($a);
-Phar::unlinkArchive($fname2);
-$b['foo/stat.php'] = '<?php
-echo "is_link\n";
-var_dump(is_link("./stat.php"),is_file("./stat.php"), is_link("./oops"), is_file("./oops"));
-var_dump(is_link("testit/link"), filetype("testit/link"), filetype("testit"), is_file("testit/link"));
-echo "not found\n";
-var_dump(is_link("notfound"));
-echo "dir\n";
-var_dump(is_dir("./bar"), is_file("foo/bar/blah"));
-?>';
-$b->addEmptyDir('foo/bar/blah');
-$b->setStub('<?php
-include "phar://" . __FILE__ . "/foo/stat.php";
-__HALT_COMPILER();');
-include $fname3;
-?>
-===DONE===
---CLEAN--
-<?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.tar'); ?>
-<?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.tar'); ?>
---EXPECTF--
-Warning: Wrong parameter count for is_file() in %sstat2.php on line %d
-
-Warning: Wrong parameter count for is_link() in %sstat2.php on line %d
-bool(true)
-is_link
-bool(false)
-bool(true)
-bool(false)
-bool(false)
-bool(true)
-string(4) "link"
-string(3) "dir"
-bool(true)
-not found
-bool(false)
-dir
-bool(true)
-bool(false)
-===DONE===
\ No newline at end of file
index 6a3f2bf2c81e118561cd510e0247bc8d78b0ba55..99f658fa78c3b1fb309559cb8e81255808903a08 100644 (file)
@@ -2,7 +2,6 @@
 Phar: test stat function interceptions and is_file/is_link edge cases (PHP 5.3+)
 --SKIPIF--
 <?php if (!extension_loaded("phar")) die("skip");?>
-<?php if (substr(phpversion(), 0, 3) == '5.2') die("skip PHP 5.3+ required for this test");?>
 --INI--
 phar.readonly=0
 phar.require_hash=0
index c725a82f9a71724e614630b16dc86ce5fb16f522..8c15d4c340d1e14616d47351494a39cc3c16f26c 100644 (file)
@@ -3,12 +3,6 @@ Bug 46360 - TCP_NODELAY constant (sock_get_option, sock_set_option)
 --CREDITS--
 Florian Anderiasch
 fa@php.net
---SKIPIF--
-<?php
-    if (version_compare(phpversion(), '5.2.7', '<')) {
-        die('skip old php, not eligible');
-    }
-?>
 --FILE--
 <?php
     var_dump('TCP_NODELAY');
index a135a712fcae72e660e3002ffd922a34b0d49be5..fe063824e188fb9f7026d7ec326b7d08894b5d86 100644 (file)
@@ -2,12 +2,6 @@
 mixed forward_static_call_array ( callable $function , array $parameters );
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - @phpsp - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-    die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 
index 5c811b8c6fb15212a641eb038c85b559bb87cdab..e7caaf48eb2e279863c669d18e1bbd0e03581e8d 100644 (file)
@@ -2,12 +2,6 @@
 string gethostname(void);
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-  die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 var_dump(gethostname());
index 0d4e194d641120c1852e6447de22dd0d712d8112..5a30a23cb4624f488a29e9ce7146ea34d58995e5 100644 (file)
@@ -2,12 +2,6 @@
 array stream_get_transports ( void );
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-  die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 print((is_array(stream_get_transports())) ? ("yes") : ("Test 'array stream_get_transports ( void );' has failed"));
index 58dfdc930d4ea31006e732ce21bbba744c885665..c529dc37bff24a157fc7dfcf206346d50c6aee79 100644 (file)
@@ -2,12 +2,6 @@
 array stream_get_wrappers ( void );
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-  die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 print((is_array(stream_get_wrappers())) ? ("yes") : ("Test 'array stream_get_wrappers ( void );' has failed"));
index 17bf0b7db4f41212f42cbf602084ce4dff742bbc..34c88b9c96a899fe10bb34cb7c8bbfbec6a23a63 100644 (file)
@@ -2,12 +2,6 @@
 string stream_socket_get_name ( resource $handle , bool $want_peer ) ;
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-  die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 $serverUri = "tcp://127.0.0.1:31854";
index f4161288ffab690cc801524fb892d9ce1f50182a..08de4e31a9705657844998ef87c5b9262e8729be 100644 (file)
@@ -2,12 +2,6 @@
 string stream_socket_recvfrom ( resource $socket , int $length [, int $flags = 0 [, string &$address ]] );
 --CREDITS--
 marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
---SKIPIF--
-<?php
-if (phpversion() < "5.3.0") {
-  die('SKIP php version so lower.');
-}
-?>
 --FILE--
 <?php
 $serverUri = "tcp://127.0.0.1:31854";
index ef8c354c363d1e70a15aa0a4048dd2d79aa076b8..9cd70c488c7b399a27a9c2b8667e509ede456e8d 100644 (file)
@@ -6,7 +6,7 @@ phpversion test
 print phpversion();
 print "\n";
 print phpversion('standard');
-
+?>
 --EXPECTF--
 %s
 %s