summaryrefslogtreecommitdiffstats
path: root/Tests/FindPython/Python3
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@sap.com>2018-02-22 15:18:43 (GMT)
committerMarc Chevrier <marc.chevrier@sap.com>2018-03-20 08:29:44 (GMT)
commit352baee2074d12637c65e3113f560bbf98d0640a (patch)
tree916caf02869368eb32ef955697147e6a2f52ff40 /Tests/FindPython/Python3
parentdfc9036bcf65afc4aa0fd21092d47da4ccd259cb (diff)
downloadCMake-352baee2074d12637c65e3113f560bbf98d0640a.zip
CMake-352baee2074d12637c65e3113f560bbf98d0640a.tar.gz
CMake-352baee2074d12637c65e3113f560bbf98d0640a.tar.bz2
FindPython*: New implementation for Python stuff
Fixes: #16142
Diffstat (limited to 'Tests/FindPython/Python3')
-rw-r--r--Tests/FindPython/Python3/CMakeLists.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/FindPython/Python3/CMakeLists.txt b/Tests/FindPython/Python3/CMakeLists.txt
new file mode 100644
index 0000000..cb86eae
--- /dev/null
+++ b/Tests/FindPython/Python3/CMakeLists.txt
@@ -0,0 +1,22 @@
+cmake_minimum_required(VERSION 3.1)
+
+project(TestPython3 C)
+
+include(CTest)
+
+find_package(Python3 2 QUIET)
+if (Python3_FOUND)
+ message (FATAL_ERROR "Wrong python version found: ${Python3_VERSION}")
+endif()
+
+find_package(Python3 REQUIRED COMPONENTS Interpreter Development)
+if (NOT Python3_FOUND)
+ message (FATAL_ERROR "Fail to found Python 3")
+endif()
+
+Python3_add_library (spam3 MODULE ../spam.c)
+target_compile_definitions (spam3 PRIVATE PYTHON3)
+
+add_test (NAME python3_spam3
+ COMMAND "${CMAKE_COMMAND}" -E env "PYTHONPATH=$<TARGET_FILE_DIR:spam3>"
+ "${Python3_EXECUTABLE}" -c "import spam3; spam3.system(\"cd\")")
'bug_3608714'>bug_3608714 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat
-rw-r--r--compat/opendir.c3
-rw-r--r--compat/waitpid.c6
-rw-r--r--unix/dltest/pkgooa.c6
3 files changed, 9 insertions, 6 deletions
diff --git a/compat/opendir.c b/compat/opendir.c
index 13eb974..23803ff 100644
--- a/compat/opendir.c
+++ b/compat/opendir.c
@@ -28,9 +28,8 @@ opendir(
if ((fd = open(myname, 0, 0)) == -1) {
return NULL;
}
- dirp = (DIR *) Tcl_Alloc(sizeof(DIR));
+ dirp = (DIR *) Tcl_AttemptAlloc(sizeof(DIR));
if (dirp == NULL) {
- /* unreachable? */
close(fd);
return NULL;
}
diff --git a/compat/waitpid.c b/compat/waitpid.c