1--TEST--
2oci_connect() without ORACLE_HOME set (OCIServerAttach() segfaults)
3--SKIPIF--
4<?php
5if (!extension_loaded('oci8')) die("skip no oci8 extension");
6ob_start();
7phpinfo(INFO_MODULES);
8$phpinfo = ob_get_clean();
9$ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
10if ($ov != 1) {
11	die ("skip Test only valid when OCI8 is built with an ORACLE_HOME");
12}
13preg_match('/^([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)/', oci_client_version(), $matches);
14if (!(isset($matches[0]) &&
15    (($matches[1] == 11 && $matches[2] >= 2) ||
16     ($matches[1] >= 12)
17     ))) {
18    die("skip test expected to work only with Oracle 11gR2 or greater version of client");
19}
20?>
21--ENV--
22ORACLE_HOME=""
23--FILE--
24<?php
25
26require __DIR__."/details.inc";
27
28if (!empty($dbase)) {
29	var_dump(oci_connect($user, $password, $dbase));
30}
31else {
32	var_dump(oci_connect($user, $password));
33}
34
35?>
36===DONE===
37<?php exit(0); ?>
38--EXPECTF--
39Warning: 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
40
41Warning: oci_connect(): Error while trying to retrieve text for error ORA-01804
42 in %s on line %d
43bool(false)
44===DONE===
45