File tree 2 files changed +13
-0
lines changed 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+ # Just for demo purposes... Probably don't want an in-tree build ;)
5
+ mkdir -p build/
6
+ cd build/
7
+ cmake ../ -DPYBIND11_TEST_FILTER=" test_smart_ptr.cpp;test_virtual_functions.cpp"
8
+ cmake --build . --target check
9
+ cd ../
Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ set(PYBIND11_TEST_FILES
128
128
test_custom_type_casters
129
129
test_custom_type_setup
130
130
test_docstring_options
131
+ test_z.py
131
132
test_eigen
132
133
test_enum
133
134
test_eval
@@ -212,6 +213,9 @@ foreach(test_name ${PYBIND11_TEST_FILES})
212
213
endforeach ()
213
214
set (PYBIND11_TEST_FILES ${PYBIND11_CPPTEST_FILES} )
214
215
list (SORT PYBIND11_PYTEST_FILES)
216
+ message ("PYTEST ${PYBIND11_PYTEST_FILES} " )
217
+ message ("PYBIND11_TEST_FILES ${PYBIND11_TEST_FILES} " )
218
+
215
219
216
220
# Contains the set of test files that require pybind11_cross_module_tests to be
217
221
# built; if none of these are built (i.e. because TEST_OVERRIDE is used and
You can’t perform that action at this time.
0 commit comments