summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv07.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/unset_cv07.phpt')
-rw-r--r--Zend/tests/unset_cv07.phpt18
1 files changed, 0 insertions, 18 deletions
diff --git a/Zend/tests/unset_cv07.phpt b/Zend/tests/unset_cv07.phpt
deleted file mode 100644
index fe16abf750..0000000000
--- a/Zend/tests/unset_cv07.phpt
+++ /dev/null
@@ -1,18 +0,0 @@
---TEST--
-unset() CV 7 (indirect unset() of global variable in import_request_variables())
---SKIPIF--
-<?php if (php_sapi_name()=='cli') echo 'skip'; ?>
---GET--
-x=2
---FILE--
-<?php
-$_x = "1\n";
-echo $_x;
-import_request_variables("g","_");
-echo $_x;
-echo "\nok\n";
-?>
---EXPECTF--
-1
-2
-ok