2021-01-19 23:48:22 +00:00
|
|
|
possibly_uninitialized(PYTHON_MODULE_EXTENSION Python_INTERPRETER_ID)
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
if("${PYTHON_MODULE_EXTENSION}" MATCHES "pypy" OR "${Python_INTERPRETER_ID}" STREQUAL "PyPy")
|
2021-01-19 23:48:22 +00:00
|
|
|
message(STATUS "Skipping embed test on PyPy")
|
2020-07-30 20:20:10 +00:00
|
|
|
add_custom_target(cpptest) # Dummy target on PyPy. Embedding is not supported.
|
2017-03-23 16:27:32 +00:00
|
|
|
set(_suppress_unused_variable_warning "${DOWNLOAD_CATCH}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
tests: update catch to 2.13.5 to fix glibc 2.34 failures (#3679)
* Download catch for MinGw
* Fix rest of MinGW
* fix: update catch to 2.13.5 to fix glibc 2.34 failures
Update the downloaded Catch version to 2.13.5, in order to fix build
failure on glibc 2.34:
```
In file included from /usr/include/signal.h:328,
from /tmp/pybind11/.nox/tests-3-9/tmp/tests/catch/catch.hpp:8030,
from /tmp/pybind11/tests/test_embed/catch.cpp:13:
/tmp/pybind11/.nox/tests-3-9/tmp/tests/catch/catch.hpp:10818:58: error: call to non-‘constexpr’ function ‘long int sysconf(int)’
10818 | static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
| ^~~~~~~~~~~
In file included from /usr/include/python3.9/Python.h:36,
from /tmp/pybind11/include/pybind11/detail/common.h:215,
from /tmp/pybind11/include/pybind11/pytypes.h:12,
from /tmp/pybind11/include/pybind11/cast.h:13,
from /tmp/pybind11/include/pybind11/attr.h:13,
from /tmp/pybind11/include/pybind11/pybind11.h:13,
from /tmp/pybind11/include/pybind11/embed.h:12,
from /tmp/pybind11/tests/test_embed/catch.cpp:4:
/usr/include/unistd.h:640:17: note: ‘long int sysconf(int)’ declared here
640 | extern long int sysconf (int __name) __THROW;
| ^~~~~~~
In file included from /tmp/pybind11/tests/test_embed/catch.cpp:13:
/tmp/pybind11/.nox/tests-3-9/tmp/tests/catch/catch.hpp:10877:45: error: size of array ‘altStackMem’ is not an integral constant-expression
10877 | char FatalConditionHandler::altStackMem[sigStackSize] = {};
| ^~~~~~~~~~~~
```
The newest Catch version cannot be used yet because of regression:
https://github.com/catchorg/Catch2/pull/2364
* fix: add option for _ check, only define on pybind11
* Revert "fix: add option for _ check, only define on pybind11"
This reverts commit 86817db488c547816e21e20d678db318bb286384.
* fix: only undef _ for catch cpp creation.
Co-authored-by: Aaron Gokaslan <skylion.aaron@gmail.com>
Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
2022-02-06 04:53:02 +00:00
|
|
|
find_package(Catch 2.13.5)
|
2020-08-19 16:26:26 +00:00
|
|
|
|
2017-10-22 15:25:18 +00:00
|
|
|
if(CATCH_FOUND)
|
|
|
|
message(STATUS "Building interpreter tests using Catch v${CATCH_VERSION}")
|
|
|
|
else()
|
2017-03-23 16:27:32 +00:00
|
|
|
message(STATUS "Catch not detected. Interpreter tests will be skipped. Install Catch headers"
|
2020-07-26 17:44:10 +00:00
|
|
|
" manually or use `cmake -DDOWNLOAD_CATCH=ON` to fetch them automatically.")
|
2017-03-23 16:27:32 +00:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
2020-07-30 20:20:10 +00:00
|
|
|
add_executable(test_embed catch.cpp test_interpreter.cpp)
|
2017-03-23 16:27:32 +00:00
|
|
|
pybind11_enable_warnings(test_embed)
|
|
|
|
|
2020-08-19 16:26:26 +00:00
|
|
|
target_link_libraries(test_embed PRIVATE pybind11::embed Catch2::Catch2 Threads::Threads)
|
2017-06-20 21:50:51 +00:00
|
|
|
|
2020-08-19 17:11:57 +00:00
|
|
|
if(NOT CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR)
|
2021-11-15 18:36:41 +00:00
|
|
|
file(COPY test_interpreter.py test_trampoline.py DESTINATION "${CMAKE_CURRENT_BINARY_DIR}")
|
2020-08-19 17:11:57 +00:00
|
|
|
endif()
|
|
|
|
|
2020-07-30 20:20:10 +00:00
|
|
|
add_custom_target(
|
|
|
|
cpptest
|
|
|
|
COMMAND "$<TARGET_FILE:test_embed>"
|
2021-07-29 01:04:14 +00:00
|
|
|
DEPENDS test_embed
|
2020-08-19 17:11:57 +00:00
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
2018-01-11 23:46:10 +00:00
|
|
|
|
|
|
|
pybind11_add_module(external_module THIN_LTO external_module.cpp)
|
2020-07-30 20:20:10 +00:00
|
|
|
set_target_properties(external_module PROPERTIES LIBRARY_OUTPUT_DIRECTORY
|
2020-08-19 17:11:57 +00:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}")
|
2020-07-22 14:23:16 +00:00
|
|
|
foreach(config ${CMAKE_CONFIGURATION_TYPES})
|
|
|
|
string(TOUPPER ${config} config)
|
2020-07-30 20:20:10 +00:00
|
|
|
set_target_properties(external_module PROPERTIES LIBRARY_OUTPUT_DIRECTORY_${config}
|
2020-08-19 17:11:57 +00:00
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}")
|
2020-07-22 14:23:16 +00:00
|
|
|
endforeach()
|
2018-01-11 23:46:10 +00:00
|
|
|
add_dependencies(cpptest external_module)
|
|
|
|
|
2017-03-23 16:27:32 +00:00
|
|
|
add_dependencies(check cpptest)
|