diff options
author | Christopher Jones <christopher.jones@oracle.com> | 2019-02-20 11:10:57 +1100 |
---|---|---|
committer | Christopher Jones <christopher.jones@oracle.com> | 2019-02-20 11:10:57 +1100 |
commit | 7a9c20f3fd9152ddf1e55aef9120ecfcf4f87613 (patch) | |
tree | 5a8c3e6e97ad4464bdccc9625d0ff7128575e275 | |
parent | b243f2feca66fe4d5f696dbe3d9453af272d5613 (diff) | |
download | php-git-7a9c20f3fd9152ddf1e55aef9120ecfcf4f87613.tar.gz |
Correct skipif use for OCI8 password tests
-rw-r--r-- | ext/oci8/tests/password_new.phpt | 1 | ||||
-rw-r--r-- | ext/oci8/tests/password_old.phpt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/oci8/tests/password_new.phpt b/ext/oci8/tests/password_new.phpt index a29fb8f52f..9977b10a7b 100644 --- a/ext/oci8/tests/password_new.phpt +++ b/ext/oci8/tests/password_new.phpt @@ -3,6 +3,7 @@ oci_password_change() --SKIPIF-- <?php $target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on thes +require(dirname(__FILE__).'/skipif.inc'); require(dirname(__FILE__).'/connect.inc'); if (empty($dbase)) die ("skip requires database connection string be set"); if ($test_drcp) die("skip password change not supported in DRCP Mode"); diff --git a/ext/oci8/tests/password_old.phpt b/ext/oci8/tests/password_old.phpt index 873fd4f595..b2365292a4 100644 --- a/ext/oci8/tests/password_old.phpt +++ b/ext/oci8/tests/password_old.phpt @@ -3,6 +3,7 @@ ocipasswordchange() --SKIPIF-- <?php $target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on thes +require(dirname(__FILE__).'/skipif.inc'); require(dirname(__FILE__).'/connect.inc'); if (empty($dbase)) die ("skip requires database connection string be set"); if ($test_drcp) die("skip password change not supported in DRCP Mode"); |