Skip to content

Commit

Permalink
Skip some OCI tests with repeat
Browse files Browse the repository at this point in the history
  • Loading branch information
iluuu1994 committed Sep 27, 2022
1 parent 958955e commit 93e509f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ext/oci8/tests/conn_attr_1.phpt
Expand Up @@ -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"))
Expand Down
1 change: 1 addition & 0 deletions ext/oci8/tests/conn_attr_2.phpt
Expand Up @@ -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');

Expand Down
1 change: 1 addition & 0 deletions ext/oci8/tests/conn_attr_3.phpt
Expand Up @@ -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');

Expand Down
1 change: 1 addition & 0 deletions ext/oci8/tests/conn_attr_5.phpt
Expand Up @@ -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');

Expand Down
1 change: 1 addition & 0 deletions ext/oci8/tests/edition_2.phpt
Expand Up @@ -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");
Expand Down

0 comments on commit 93e509f

Please sign in to comment.