@@ -101,20 +101,6 @@ set(PYBIND11_TEST_FILES
101
101
test_callbacks.cpp
102
102
test_chrono.cpp
103
103
test_class.cpp
104
- test_class_sh_basic.cpp
105
- test_class_sh_disowning.cpp
106
- test_class_sh_disowning_mi.cpp
107
- test_class_sh_factory_constructors.cpp
108
- test_class_sh_inheritance.cpp
109
- test_class_sh_shared_ptr_copy_move.cpp
110
- test_class_sh_trampoline_basic.cpp
111
- test_class_sh_trampoline_self_life_support.cpp
112
- test_class_sh_trampoline_shared_from_this.cpp
113
- test_class_sh_trampoline_shared_ptr_cpp_arg.cpp
114
- test_class_sh_trampoline_unique_ptr.cpp
115
- test_class_sh_unique_ptr_member.cpp
116
- test_class_sh_virtual_py_cpp_mix.cpp
117
- test_classh_mock.cpp
118
104
test_const_name.cpp
119
105
test_constants_and_functions.cpp
120
106
test_copy_move.cpp
@@ -177,8 +163,6 @@ if(PYBIND11_CUDA_TESTS)
177
163
endif ()
178
164
179
165
string (REPLACE ".cpp" ".py" PYBIND11_PYTEST_FILES "${PYBIND11_TEST_FILES} " )
180
- list (APPEND PYBIND11_PYTEST_FILES test_class_sh_module_local.py)
181
- list (SORT PYBIND11_PYTEST_FILES)
182
166
183
167
# Contains the set of test files that require pybind11_cross_module_tests to be
184
168
# built; if none of these are built (i.e. because TEST_OVERRIDE is used and
@@ -188,8 +172,6 @@ set(PYBIND11_CROSS_MODULE_TESTS test_exceptions.py test_local_bindings.py test_s
188
172
189
173
set (PYBIND11_CROSS_MODULE_GIL_TESTS test_gil_scoped.py)
190
174
191
- set (PYBIND11_CLASS_SH_MODULE_LOCAL_TESTS test_class_sh_module_local.py)
192
-
193
175
set (PYBIND11_EIGEN_REPO
194
176
"https://gitlab.com/libeigen/eigen.git"
195
177
CACHE STRING "Eigen repository to use for tests" )
@@ -385,16 +367,6 @@ foreach(t ${PYBIND11_CROSS_MODULE_GIL_TESTS})
385
367
endif ()
386
368
endforeach ()
387
369
388
- foreach (t ${PYBIND11_CLASS_SH_MODULE_LOCAL_TESTS} )
389
- list (FIND PYBIND11_PYTEST_FILES ${t} i)
390
- if (i GREATER -1)
391
- list (APPEND test_targets class_sh_module_local_0)
392
- list (APPEND test_targets class_sh_module_local_1)
393
- list (APPEND test_targets class_sh_module_local_2)
394
- break ()
395
- endif ()
396
- endforeach ()
397
-
398
370
# Support CUDA testing by forcing the target file to compile with NVCC
399
371
if (PYBIND11_CUDA_TESTS)
400
372
set_property (SOURCE ${PYBIND11_TEST_FILES} PROPERTY LANGUAGE CUDA)
0 commit comments