summaryrefslogtreecommitdiff
path: root/src/tests/stream_wrapper
diff options
context:
space:
mode:
authorjvoisin2020-12-12 18:57:48 +0000
committerjvoisin2020-12-12 20:33:14 +0100
commit5329a55bfd2b00d617a40d587cd37050d964ccbf (patch)
tree81ba53c4f950442a904a437458228d1ab2859227 /src/tests/stream_wrapper
parente34f5f5aaa4a40745bd652198d75b879aa09a53c (diff)
Mark the relevant php8 tests as broken (#359)
* Skip tests broken on php8 * Oops * Fix some tests * Add some XXE tests for php8 * Fix a test
Diffstat (limited to 'src/tests/stream_wrapper')
-rw-r--r--src/tests/stream_wrapper/stream_wrapper.phpt1
-rw-r--r--src/tests/stream_wrapper/stream_wrapper_register.phpt1
-rw-r--r--src/tests/stream_wrapper/stream_wrapper_without_openssl.phpt1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/tests/stream_wrapper/stream_wrapper.phpt b/src/tests/stream_wrapper/stream_wrapper.phpt
index 3336ef6..5a1dab7 100644
--- a/src/tests/stream_wrapper/stream_wrapper.phpt
+++ b/src/tests/stream_wrapper/stream_wrapper.phpt
@@ -5,6 +5,7 @@ Stream wrapper
5if (!extension_loaded("snuffleupagus")) print "skip snuffleupagus extension missing"; 5if (!extension_loaded("snuffleupagus")) print "skip snuffleupagus extension missing";
6if (!extension_loaded("openssl")) print "skip openssl extension missing"; 6if (!extension_loaded("openssl")) print "skip openssl extension missing";
7?> 7?>
8<?php if (PHP_VERSION_ID >= 80000) print "skip"; ?>
8--INI-- 9--INI--
9sp.configuration_file={PWD}/config/config_stream_wrapper.ini 10sp.configuration_file={PWD}/config/config_stream_wrapper.ini
10--FILE-- 11--FILE--
diff --git a/src/tests/stream_wrapper/stream_wrapper_register.phpt b/src/tests/stream_wrapper/stream_wrapper_register.phpt
index 39514e9..a3ffb2e 100644
--- a/src/tests/stream_wrapper/stream_wrapper_register.phpt
+++ b/src/tests/stream_wrapper/stream_wrapper_register.phpt
@@ -2,6 +2,7 @@
2Stream wrapper 2Stream wrapper
3--SKIPIF-- 3--SKIPIF--
4<?php if (!extension_loaded("snuffleupagus")) print "skip"; ?> 4<?php if (!extension_loaded("snuffleupagus")) print "skip"; ?>
5<?php if (PHP_VERSION_ID >= 80000) print "skip"; ?>
5--INI-- 6--INI--
6sp.configuration_file={PWD}/config/config_stream_wrapper_register.ini 7sp.configuration_file={PWD}/config/config_stream_wrapper_register.ini
7--FILE-- 8--FILE--
diff --git a/src/tests/stream_wrapper/stream_wrapper_without_openssl.phpt b/src/tests/stream_wrapper/stream_wrapper_without_openssl.phpt
index 5a11c8f..73090ff 100644
--- a/src/tests/stream_wrapper/stream_wrapper_without_openssl.phpt
+++ b/src/tests/stream_wrapper/stream_wrapper_without_openssl.phpt
@@ -2,6 +2,7 @@
2Stream wrapper, without a dependency on openssl 2Stream wrapper, without a dependency on openssl
3--SKIPIF-- 3--SKIPIF--
4<?php if (!extension_loaded("snuffleupagus")) print "skip"; ?> 4<?php if (!extension_loaded("snuffleupagus")) print "skip"; ?>
5<?php if (PHP_VERSION_ID >= 80000) print "skip"; ?>
5--INI-- 6--INI--
6sp.configuration_file={PWD}/config/config_stream_wrapper.ini 7sp.configuration_file={PWD}/config/config_stream_wrapper.ini
7--FILE-- 8--FILE--