Skip some OCI tests with repeat

This commit is contained in:
Ilija Tovilo 2022-09-27 23:32:15 +02:00
parent 958955e62a
commit 93e509fd8c
No known key found for this signature in database
GPG Key ID: A4F5D403F118200A
5 changed files with 7 additions and 1 deletions

View File

@ -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"))

View File

@ -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');

View File

@ -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');

View File

@ -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');

View File

@ -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");