diff options
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index acad225..e4dd8f7 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -381,7 +381,7 @@ def _run_test(testdir, test_build_dir, install_dir, extra_args, compiler, backen setup_env = None # Configure in-process if pass_prefix_to_test(testdir): - gen_args = ['--prefix', '/usr'] + gen_args = ['--prefix', 'x:/usr'] if mesonlib.is_windows() else ['--prefix', '/usr'] else: gen_args = [] if pass_libdir_to_test(testdir): @@ -547,6 +547,10 @@ def skippable(suite, test): if not suite.endswith('frameworks'): return True + # this test assumptions aren't valid for Windows paths + if test.endswith('38 libdir must be inside prefix'): + return True + # gtk-doc test may be skipped, pending upstream fixes for spaces in # filenames landing in the distro used for CI if test.endswith('10 gtk-doc'): |