summaryrefslogtreecommitdiff
path: root/src/tests/disable_function/disabled_function_super_global_var.phpt
diff options
context:
space:
mode:
authorjvoisin2019-02-23 12:06:51 +0100
committerjvoisin2019-02-23 12:12:45 +0100
commitd03c3c8d01f6f507bf844fec07477f30e3db61d9 (patch)
tree040773d005257a0541da580c26bbb2b0831155b2 /src/tests/disable_function/disabled_function_super_global_var.phpt
parenta48297dfc1144931e18073a87ed83ea337e3d37a (diff)
Fix the testsuite on php8.
In php8, it's non-trivial to hook strlen, since this function is usually optimized away by the compiler.
Diffstat (limited to 'src/tests/disable_function/disabled_function_super_global_var.phpt')
-rw-r--r--src/tests/disable_function/disabled_function_super_global_var.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/disable_function/disabled_function_super_global_var.phpt b/src/tests/disable_function/disabled_function_super_global_var.phpt
index d97194a..196d9e2 100644
--- a/src/tests/disable_function/disabled_function_super_global_var.phpt
+++ b/src/tests/disable_function/disabled_function_super_global_var.phpt
@@ -9,13 +9,13 @@ bla=test
9--FILE-- 9--FILE--
10<?php 10<?php
11function test(){ 11function test(){
12 echo strlen($_GET['bla']) . "\n"; 12 echo strtoupper($_GET['bla']) . "\n";
13} 13}
14test(); 14test();
15$_GET['bla'] = 'test2'; 15$_GET['bla'] = 'test2';
16test(); 16test();
17?> 17?>
18--EXPECTF-- 18--EXPECTF--
194 19TEST
20 20
21Fatal error: [snuffleupagus][disabled_function] Aborted execution on call of the function 'strlen' in %a/disabled_function_super_global_var.php on line 3 21Fatal error: [snuffleupagus][disabled_function] Aborted execution on call of the function 'strtoupper' in %a/disabled_function_super_global_var.php on line 3