diff options
Diffstat (limited to 'src/tests/disable_function/disabled_function_local_var_crash.phpt')
| -rw-r--r-- | src/tests/disable_function/disabled_function_local_var_crash.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/disable_function/disabled_function_local_var_crash.phpt b/src/tests/disable_function/disabled_function_local_var_crash.phpt index 8dec946..3381b6c 100644 --- a/src/tests/disable_function/disabled_function_local_var_crash.phpt +++ b/src/tests/disable_function/disabled_function_local_var_crash.phpt | |||
| @@ -7,12 +7,12 @@ sp.configuration_file={PWD}/config/disabled_function_local_var.ini | |||
| 7 | --FILE-- | 7 | --FILE-- |
| 8 | <?php | 8 | <?php |
| 9 | function test(){ | 9 | function test(){ |
| 10 | echo strlen("id") . "\n"; | 10 | echo strtoupper("id") . "\n"; |
| 11 | } | 11 | } |
| 12 | ob_start(test()); | 12 | ob_start(test()); |
| 13 | echo "test\n"; | 13 | echo "test\n"; |
| 14 | ?> | 14 | ?> |
| 15 | --EXPECTF-- | 15 | --EXPECTF-- |
| 16 | 2 | 16 | ID |
| 17 | test | 17 | test |
| 18 | 18 | ||
