Skip to content

Commit 25d3cee

Browse files
committed
old test exts are loaded correctly
1 parent 5cee491 commit 25d3cee

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/actions/test-linux/action.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ runs:
1616
export PDO_MYSQL_TEST_PASS=root
1717
export PDO_DBLIB_TEST_DSN="dblib:host=127.0.0.1;dbname=master;version=7.0"
1818
export PDO_DBLIB_TEST_USER="pdo_test"
19-
export PHP_OCI8_TEST_USER="system"
20-
export PHP_OCI8_TEST_PASS="passXX"
21-
export PHP_OCI8_TEST_DB="oracle/XE"
22-
export PDO_OCI_TEST_USER="system"
23-
export PDO_OCI_TEST_PASS="passXX"
24-
export PDO_OCI_TEST_DSN="oci:dbname=oracle/xe;charset=AL32UTF8"
19+
export PDO_DBLIB_TEST_PASS="password"
2520
export SKIP_IO_CAPTURE_TESTS=1
2621
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
2722
-j$(/usr/bin/nproc) \

ext/oci8/tests/bind_char_1.phpt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
SELECT oci_bind_by_name with SQLT_AFC aka CHAR
33
--SKIPIF--
44
<?php
5+
6+
print_r(get_loaded_extensions());
7+
58
if (!extension_loaded('oci8')) die ("skip no oci8 extension");
69
require(__DIR__."/connect.inc");
710
// The bind buffer size edge cases seem to change each DB version.

0 commit comments

Comments
 (0)