Skip to content

Commit 8d13863

Browse files
committed
Remove the RTLD_GLOBAL mode in tests
1 parent f2331df commit 8d13863

6 files changed

+6
-12
lines changed

testsuite/test_3c2e.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
import ctypes
1414
import numpy
1515

16-
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')),
17-
mode=os.RTLD_GLOBAL|os.RTLD_NOW)
16+
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')))
1817

1918
PTR_LIGHT_SPEED = 0
2019
PTR_COMMON_ORIG = 1

testsuite/test_cart2sph.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
sys.path.insert(0, os.path.abspath(os.path.join(__file__, '../../scripts')))
1111
import cart2sph
1212

13-
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')),
14-
mode=os.RTLD_GLOBAL|os.RTLD_NOW)
13+
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')))
1514

1615
pauli = np.array([[[0., 1.],
1716
[1., 0.]], # x

testsuite/test_cint.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
import ctypes
1414
import numpy
1515

16-
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')),
17-
mode=os.RTLD_GLOBAL|os.RTLD_NOW)
16+
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')))
1817

1918

2019
PTR_EXPCUTOFF = 0

testsuite/test_int1e_grids.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
import ctypes
1414
import numpy
1515

16-
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')),
17-
mode=os.RTLD_GLOBAL|os.RTLD_NOW)
16+
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')))
1817

1918
PTR_EXPCUTOFF = 0
2019
PTR_COMMON_ORIG = 1

testsuite/test_int2e_f12_etc.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
import ctypes
44
import numpy
55

6-
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')),
7-
mode=os.RTLD_GLOBAL|os.RTLD_NOW)
6+
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')))
87

98
from pyscf import gto, lib
109

testsuite/test_int3c2e.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
import ctypes
44
import numpy
55

6-
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')),
7-
mode=os.RTLD_GLOBAL|os.RTLD_NOW)
6+
_cint = ctypes.CDLL(os.path.abspath(os.path.join(__file__, '../../build/libcint.so')))
87

98
from pyscf import gto, lib
109

0 commit comments

Comments
 (0)