diff options
author | Mats Wichmann <mats@linux.com> | 2018-08-17 15:14:03 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2018-08-17 15:14:03 (GMT) |
commit | bd27fe421c384dffebdcd3a1732a925480e2db1f (patch) | |
tree | a1039e136580169954886c1401a957fabe5eae52 /testing | |
parent | 8b47503f49fa423404cad0d95f070c1674dd8c5a (diff) | |
download | SCons-bd27fe421c384dffebdcd3a1732a925480e2db1f.zip SCons-bd27fe421c384dffebdcd3a1732a925480e2db1f.tar.gz SCons-bd27fe421c384dffebdcd3a1732a925480e2db1f.tar.bz2 |
add missed TestCmd.py changes
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons.py | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py index 14a8fcc..bf6aabb 100644 --- a/testing/framework/TestSCons.py +++ b/testing/framework/TestSCons.py @@ -1256,21 +1256,25 @@ SConscript( sconscript ) # see also sys.prefix documentation return python_minor_version_string() - def get_platform_python_info(self): + def get_platform_python_info(self, python_h_required=False): """ Returns a path to a Python executable suitable for testing on - this platform and its associated include path, library path, - library name, and the path to the Python.h header if found. - If the Python executable or Python header is not found, - the test is skipped. + this platform and its associated include path, library path and + library name. - Returns: - (path to python, include path, library path, library name, header path) + If the Python executable or Python header (if required) + is not found, the test is skipped. + + Returns a tuple: + (path to python, include path, library path, library name) """ python = os.environ.get('python_executable', self.where_is('python')) if not python: self.skip_test('Can not find installed "python", skipping test.\n') + # construct a program to run in the intended environment + # in order to fetch the characteristics of that Python. + # Windows Python doesn't store all the info in config vars. if sys.platform == 'win32': self.run(program=python, stdin="""\ import sysconfig, sys, os.path @@ -1315,11 +1319,11 @@ if os.path.exists(Python_h): else: print("False") """) - detected = self.stdout().strip().split('\n') - if detected[3] == "False": + incpath, libpath, libname, python_h = self.stdout().strip().split('\n') + if python_h == "False" and python_h_required: self.skip_test('Can not find required "Python.h", skipping test.\n') - return [python] + detected + return (python, incpath, libpath, libname) def start(self, *args, **kw): """ |