mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Skip some OCI tests with repeat
This commit is contained in:
commit
81bedb0f7d
5 changed files with 7 additions and 1 deletions
|
@ -3,7 +3,9 @@ Set and get of connection attributes with all types of connections.
|
|||
--EXTENSIONS--
|
||||
oci8
|
||||
--SKIPIF--
|
||||
<?php $target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||
<?php
|
||||
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||
require(__DIR__.'/skipif.inc');
|
||||
|
||||
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
|
||||
|
|
|
@ -4,6 +4,7 @@ Set and get of connection attributes across persistent connections and sysdba co
|
|||
oci8
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||
require(__DIR__.'/skipif.inc');
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ Set and get of connection attributes with oci_close().
|
|||
oci8
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||
require(__DIR__.'/skipif.inc');
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ Set and get connection attributes with scope end.
|
|||
oci8
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||
require(__DIR__.'/skipif.inc');
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ Set and check Oracle 11gR2 "edition" attribute
|
|||
oci8
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||
require(__DIR__."/connect.inc");
|
||||
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
|
||||
die("skip needs to be run as a DBA user");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue