123456789101112131415161718192021222324252627 |
- --TEST--
- PECL Bug #16035 (Crash with Oracle 10.2 connecting with a character set but ORACLE_HOME is not set)
- --EXTENSIONS--
- oci8
- --SKIPIF--
- <?php
- ob_start();
- phpinfo(INFO_MODULES);
- $phpinfo = ob_get_clean();
- $ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
- if ($ov !== 1) {
- die ("skip Test only valid when OCI8 is built with an ORACLE_HOME");
- }
- ?>
- --ENV--
- ORACLE_HOME=""
- --FILE--
- <?php
- oci_connect('abc', 'def', 'ghi', 'jkl');
- ?>
- --EXPECTF--
- Warning: oci_connect(): OCIEnvNlsCreate() failed. There is something wrong with your system - please check that ORACLE_HOME and %s are set and point to the right directories in %s on line %d
- Warning: oci_connect(): Error while trying to retrieve text for error ORA-01804
- in %specl_bug16035.php on line %d
|