aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-08 12:27:04 -0400
committerJohn Ericson <git@JohnEricson.me>2019-06-09 13:13:20 -0400
commit32e827dcdc451e1c5dde952cf08e4b654eac7057 (patch)
treec6c6377ff8b45e9e50caa8100fc14333342932fa /run_project_tests.py
parent69005d6b1db5e0bf9cbf5b9c4bb3b5d6a346aadb (diff)
downloadmeson-32e827dcdc451e1c5dde952cf08e4b654eac7057.zip
meson-32e827dcdc451e1c5dde952cf08e4b654eac7057.tar.gz
meson-32e827dcdc451e1c5dde952cf08e4b654eac7057.tar.bz2
Use `env.machines.*` to avoid some `is_cross`
This is a small example of the `is_cross` removal the that abstraction enables.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index f6d83b5..0f3e913 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -126,14 +126,14 @@ def platform_fix_name(fname, compiler, env):
canonical_compiler = compiler
if '?lib' in fname:
- if mesonlib.for_windows(env.is_cross_build(), env) and canonical_compiler == 'msvc':
+ if env.machines.host.is_windows() and canonical_compiler == 'msvc':
fname = re.sub(r'lib/\?lib(.*)\.', r'bin/\1.', fname)
fname = re.sub(r'/\?lib/', r'/bin/', fname)
- elif mesonlib.for_windows(env.is_cross_build(), env):
+ elif env.machines.host.is_windows():
fname = re.sub(r'lib/\?lib(.*)\.', r'bin/lib\1.', fname)
fname = re.sub(r'\?lib(.*)\.dll$', r'lib\1.dll', fname)
fname = re.sub(r'/\?lib/', r'/bin/', fname)
- elif mesonlib.for_cygwin(env.is_cross_build(), env):
+ elif env.machines.host.is_cygwin():
fname = re.sub(r'lib/\?lib(.*)\.so$', r'bin/cyg\1.dll', fname)
fname = re.sub(r'lib/\?lib(.*)\.', r'bin/cyg\1.', fname)
fname = re.sub(r'\?lib(.*)\.dll$', r'cyg\1.dll', fname)
@@ -143,7 +143,7 @@ def platform_fix_name(fname, compiler, env):
if fname.endswith('?exe'):
fname = fname[:-4]
- if mesonlib.for_windows(env.is_cross_build(), env) or mesonlib.for_cygwin(env.is_cross_build(), env):
+ if env.machines.host.is_windows() or env.machines.host.is_cygwin():
return fname + '.exe'
if fname.startswith('?msvc:'):
@@ -158,40 +158,40 @@ def platform_fix_name(fname, compiler, env):
if fname.startswith('?cygwin:'):
fname = fname[8:]
- if not mesonlib.for_cygwin(env.is_cross_build(), env):
+ if not env.machines.host.is_cygwin():
return None
if fname.startswith('?!cygwin:'):
fname = fname[9:]
- if mesonlib.for_cygwin(env.is_cross_build(), env):
+ if env.machines.host.is_cygwin():
return None
if fname.endswith('?so'):
- if mesonlib.for_windows(env.is_cross_build(), env) and canonical_compiler == 'msvc':
+ if env.machines.host.is_windows() and canonical_compiler == 'msvc':
fname = re.sub(r'lib/([^/]*)\?so$', r'bin/\1.dll', fname)
fname = re.sub(r'/(?:lib|)([^/]*?)\?so$', r'/\1.dll', fname)
return fname
- elif mesonlib.for_windows(env.is_cross_build(), env):
+ elif env.machines.host.is_windows():
fname = re.sub(r'lib/([^/]*)\?so$', r'bin/\1.dll', fname)
fname = re.sub(r'/([^/]*?)\?so$', r'/\1.dll', fname)
return fname
- elif mesonlib.for_cygwin(env.is_cross_build(), env):
+ elif env.machines.host.is_cygwin():
fname = re.sub(r'lib/([^/]*)\?so$', r'bin/\1.dll', fname)
fname = re.sub(r'/lib([^/]*?)\?so$', r'/cyg\1.dll', fname)
fname = re.sub(r'/([^/]*?)\?so$', r'/\1.dll', fname)
return fname
- elif mesonlib.for_darwin(env.is_cross_build(), env):
+ elif env.machines.host.is_darwin():
return fname[:-3] + '.dylib'
else:
return fname[:-3] + '.so'
if fname.endswith('?implib') or fname.endswith('?implibempty'):
- if mesonlib.for_windows(env.is_cross_build(), env) and canonical_compiler == 'msvc':
+ if env.machines.host.is_windows() and canonical_compiler == 'msvc':
# only MSVC doesn't generate empty implibs
if fname.endswith('?implibempty') and compiler == 'msvc':
return None
return re.sub(r'/(?:lib|)([^/]*?)\?implib(?:empty|)$', r'/\1.lib', fname)
- elif mesonlib.for_windows(env.is_cross_build(), env) or mesonlib.for_cygwin(env.is_cross_build(), env):
+ elif env.machines.host.is_windows() or env.machines.host.is_cygwin():
return re.sub(r'\?implib(?:empty|)$', r'.dll.a', fname)
else:
return None