diff options
author | Christopher Jones <sixd@php.net> | 2010-04-29 05:07:03 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2010-04-29 05:07:03 +0000 |
commit | 1238d48abf2f60092a93da8a15c46e521daaf0bd (patch) | |
tree | cd785962adb1926aebe9f7815e010f6119faea40 | |
parent | bd20dbd932e73835169a0bc01ec485cd8ac40192 (diff) | |
download | php-git-1238d48abf2f60092a93da8a15c46e521daaf0bd.tar.gz |
Remove obsolete test
-rw-r--r-- | ext/oci8/tests/oci8safemode.phpt | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/ext/oci8/tests/oci8safemode.phpt b/ext/oci8/tests/oci8safemode.phpt deleted file mode 100644 index ac88cb02da..0000000000 --- a/ext/oci8/tests/oci8safemode.phpt +++ /dev/null @@ -1,22 +0,0 @@ ---TEST-- -Test functionality disabled in safe mode ---SKIPIF-- -<?php if (!extension_loaded('oci8')){ die("skip no oci8 extension"); } if (PHP_VERSION_ID < 503099){ die("skip: safe_mode no longer available"); } ?> ---INI-- -oci8.privileged_connect=On ---FILE-- -<?php - -$c = oci_connect("hr", "hrpwd", "//localhost/XE", null, OCI_SYSDBA); - -$r = oci_password_change($c, "hr", "hrpwd", "hrpwd"); - -echo "Done\n"; -?> ---EXPECTF-- -%sarning:%sDirective 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown on line 0 - -Warning: oci_connect(): Privileged connect is disabled in Safe Mode in %s on line %d - -Warning: oci_password_change(): is disabled in Safe Mode in %s on line %d -Done |