diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-20 22:15:08 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-20 23:14:45 +0200 |
commit | 105ea1e597a6ec5e711d95ec6339597ef759c475 (patch) | |
tree | 394ad695ba2ec95d9b56edaf83149d8abe386070 /run_project_tests.py | |
parent | 5d51bc79c7555e681a0c638da9528458257744ae (diff) | |
download | meson-105ea1e597a6ec5e711d95ec6339597ef759c475.zip meson-105ea1e597a6ec5e711d95ec6339597ef759c475.tar.gz meson-105ea1e597a6ec5e711d95ec6339597ef759c475.tar.bz2 |
Make the full test suite runnable with an external command.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 27caabd..b94a976 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -322,13 +322,30 @@ def run_test(skipped, testdir, extra_args, compiler, backend, flags, commands, s finally: mlog.shutdown() # Close the log file because otherwise Windows wets itself. +def pass_prefix_to_test(dirname): + if '40 prefix' in dirname: + return False + return True + +def pass_libdir_to_test(dirname): + if '8 install' in dirname: + return False + if '39 libdir' in dirname: + return False + return True + def _run_test(testdir, test_build_dir, install_dir, extra_args, compiler, backend, flags, commands, should_fail): compile_commands, clean_commands, install_commands, uninstall_commands = commands test_args = parse_test_args(testdir) gen_start = time.time() # Configure in-process - gen_args = ['--prefix', '/usr', '--libdir', 'lib', testdir, test_build_dir]\ - + flags + test_args + extra_args + if pass_prefix_to_test(testdir): + gen_args = ['--prefix', '/usr'] + else: + gen_args = [] + if pass_libdir_to_test(testdir): + gen_args += ['--libdir', 'lib'] + gen_args += [testdir, test_build_dir] + flags + test_args + extra_args (returncode, stdo, stde) = run_configure(meson_command, gen_args) try: logfile = os.path.join(test_build_dir, 'meson-logs/meson-log.txt') |