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 @@ -107,7 +107,7 @@ extern zend_class_entry *oci_coll_class_entry_ptr;
107
107
* PHP_OCI_CRED_EXT must be distinct from the OCI_xxx privilege
108
108
* values.
109
109
*/
110
- #define PHP_OCI_CRED_EXT (1 <<31)
110
+ #define PHP_OCI_CRED_EXT (1u <<31)
111
111
#if ((PHP_OCI_CRED_EXT == OCI_DEFAULT ) || (PHP_OCI_CRED_EXT & (OCI_SYSOPER | OCI_SYSDBA )))
112
112
#error Invalid value for PHP_OCI_CRED_EXT
113
113
#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