summaryrefslogtreecommitdiff
path: root/tests/func/007.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/func/007.phpt')
-rw-r--r--tests/func/007.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/func/007.phpt b/tests/func/007.phpt
deleted file mode 100644
index 310ca6f263..0000000000
--- a/tests/func/007.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-INI functions test
---POST--
---GET--
---FILE--
-<?php
-
-$ini1 = ini_get('include_path');
-ini_set('include_path','ini_set_works');
-echo ini_get('include_path')."\n";
-ini_restore('include_path');
-$ini2 = ini_get('include_path');
-
-if ($ini1 !== $ini2) {
- echo "ini_restore() does not work.\n";
-}
-else {
- echo "ini_restore_works\n";
-}
-
-?>
---EXPECT--
-ini_set_works
-ini_restore_works