1
1
# gh-91321: Build a basic C++ test extension to check that the Python C API is
2
2
# compatible with C++ and does not emit C++ compiler warnings.
3
3
import os .path
4
+ try :
5
+ import ssl
6
+ except ImportError :
7
+ ssl = None
4
8
import sys
5
9
import unittest
6
10
import subprocess
11
15
12
16
MS_WINDOWS = (sys .platform == 'win32' )
13
17
14
-
15
- SETUP_TESTCPPEXT = support .findfile ('setup_testcppext.py' )
18
+ PKG_CPPEXTDATA = os .path .join (os .path .dirname (__file__ ), "cppextdata" )
16
19
17
20
18
21
@support .requires_subprocess ()
@@ -31,6 +34,8 @@ def test_build_cpp03(self):
31
34
@unittest .skipIf (
32
35
'-fsanitize' in (sysconfig .get_config_var ('PY_CFLAGS' ) or '' ),
33
36
'test does not work with analyzing builds' )
37
+ # the test uses pip which needs a TLS connection to PyPI
38
+ @unittest .skipIf (ssl is None , 'No ssl module' )
34
39
# the test uses venv+pip: skip if it's not available
35
40
@support .requires_venv_with_pip ()
36
41
def check_build (self , std_cpp03 , extension_name ):
@@ -59,11 +64,15 @@ def _check_build(self, std_cpp03, extension_name):
59
64
python = os .path .join (venv_dir , 'bin' , python_exe )
60
65
61
66
def run_cmd (operation , cmd ):
67
+ env = os .environ .copy ()
68
+ env ['CPYTHON_TEST_CPP_STD' ] = 'c++03' if std_cpp03 else 'c++11'
69
+ env ['CPYTHON_TEST_EXT_NAME' ] = extension_name
62
70
if verbose :
63
71
print ('Run:' , ' ' .join (cmd ))
64
- subprocess .run (cmd , check = True )
72
+ subprocess .run (cmd , check = True , env = env )
65
73
else :
66
74
proc = subprocess .run (cmd ,
75
+ env = env ,
67
76
stdout = subprocess .PIPE ,
68
77
stderr = subprocess .STDOUT ,
69
78
text = True )
@@ -72,16 +81,9 @@ def run_cmd(operation, cmd):
72
81
self .fail (
73
82
f"{ operation } failed with exit code { proc .returncode } " )
74
83
75
- # Build the C++ extension
76
- cmd = [python , '-X' , 'dev' ,
77
- SETUP_TESTCPPEXT , 'build_ext' , '--verbose' ]
78
- if std_cpp03 :
79
- cmd .append ('-std=c++03' )
80
- run_cmd ('Build' , cmd )
81
-
82
- # Install the C++ extension
84
+ # Build and install the C++ extension
83
85
cmd = [python , '-X' , 'dev' ,
84
- SETUP_TESTCPPEXT , 'install' ]
86
+ '-m' , 'pip' , ' install', PKG_CPPEXTDATA ]
85
87
run_cmd ('Install' , cmd )
86
88
87
89
# Do a reference run. Until we test that running python
0 commit comments