File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ extern zend_class_entry *oci_coll_class_entry_ptr;
103
103
* PHP_OCI_CRED_EXT must be distinct from the OCI_xxx privilege
104
104
* values.
105
105
*/
106
- #define PHP_OCI_CRED_EXT (1 <<31)
106
+ #define PHP_OCI_CRED_EXT (1u <<31)
107
107
#if ((PHP_OCI_CRED_EXT == OCI_DEFAULT ) || (PHP_OCI_CRED_EXT & (OCI_SYSOPER | OCI_SYSDBA )))
108
108
#error Invalid value for PHP_OCI_CRED_EXT
109
109
#endif
Original file line number Diff line number Diff line change 2
2
privileged connect tests
3
3
--EXTENSIONS--
4
4
oci8
5
+ --SKIPIF--
6
+ <?php
7
+ if (getenv ('SKIP_ASAN ' )) die ('skip leaks memory under asan ' );
8
+ ?>
5
9
--INI--
6
10
oci8.privileged_connect=1
7
11
--FILE--
Original file line number Diff line number Diff line change 5
5
pdo_oci
6
6
--SKIPIF--
7
7
<?php
8
+ if (getenv ('SKIP_ASAN ' )) die ('skip leaks memory under asan ' );
8
9
require (__DIR__ .'/../../pdo/tests/pdo_test.inc ' );
9
10
PDOTest::skip ();
10
11
?>
You can’t perform that action at this time.
0 commit comments