mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +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--
|
--EXTENSIONS--
|
||||||
oci8
|
oci8
|
||||||
--SKIPIF--
|
--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');
|
require(__DIR__.'/skipif.inc');
|
||||||
|
|
||||||
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
|
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
|
||||||
|
|
|
@ -4,6 +4,7 @@ Set and get of connection attributes across persistent connections and sysdba co
|
||||||
oci8
|
oci8
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
|
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||||
require(__DIR__.'/skipif.inc');
|
require(__DIR__.'/skipif.inc');
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ Set and get of connection attributes with oci_close().
|
||||||
oci8
|
oci8
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
|
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||||
require(__DIR__.'/skipif.inc');
|
require(__DIR__.'/skipif.inc');
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ Set and get connection attributes with scope end.
|
||||||
oci8
|
oci8
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
|
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||||
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
|
||||||
require(__DIR__.'/skipif.inc');
|
require(__DIR__.'/skipif.inc');
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ Set and check Oracle 11gR2 "edition" attribute
|
||||||
oci8
|
oci8
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
|
if (getenv('SKIP_REPEAT')) die('skip fails with repeat');
|
||||||
require(__DIR__."/connect.inc");
|
require(__DIR__."/connect.inc");
|
||||||
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
|
if (strcasecmp($user, "system") && strcasecmp($user, "sys"))
|
||||||
die("skip needs to be run as a DBA user");
|
die("skip needs to be run as a DBA user");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue