summaryrefslogtreecommitdiff
path: root/src/tests/disabled_functions_param_str_representation.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/disabled_functions_param_str_representation.phpt')
-rw-r--r--src/tests/disabled_functions_param_str_representation.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/tests/disabled_functions_param_str_representation.phpt b/src/tests/disabled_functions_param_str_representation.phpt
deleted file mode 100644
index 7cbdc0f..0000000
--- a/src/tests/disabled_functions_param_str_representation.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
1--TEST--
2Disable functions - casting various types to string internally
3--SKIPIF--
4<?php if (!extension_loaded("snuffleupagus")) die "skip"; ?>
5--INI--
6sp.configuration_file={PWD}/config/config_disabled_functions_param_str_representation.ini
7--FILE--
8<?php
9echo var_export(true) . "\n";
10echo var_export(false) . "\n";
11echo var_export(null) . "\n";
12echo var_export(1) . "\n";
13echo var_export(1.0) . "\n";
14function f(&$a) {
15 echo var_export($a) . "\n";
16}
17$a = 123; f($a);
18?>
19--EXPECTF--
20true
21false
22NULL
231
241.0
25123