aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-05-08 20:21:04 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2021-05-13 11:03:10 +0300
commit0b2a7300c039e30d3a7430d6f77dc204876eac4b (patch)
tree8bb98754ec9535e81ca2f5dec7cec0c5ebf2a14d /run_project_tests.py
parent204abd0e859debe93b95d53b59e7f4038d2d0354 (diff)
downloadmeson-0b2a7300c039e30d3a7430d6f77dc204876eac4b.zip
meson-0b2a7300c039e30d3a7430d6f77dc204876eac4b.tar.gz
meson-0b2a7300c039e30d3a7430d6f77dc204876eac4b.tar.bz2
Set up VS environment automatically when run.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index fcb8716..f477e6c 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-# Copyright 2012-2019 The Meson development team
+# Copyright 2012-2021 The Meson development team
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -46,7 +46,7 @@ from mesonbuild.build import ConfigurationData
from mesonbuild.mesonlib import MachineChoice, Popen_safe, TemporaryDirectoryWinProof
from mesonbuild.mlog import bold, green, red, yellow
from mesonbuild.coredata import backendlist, version as meson_version
-
+from mesonbuild.mesonmain import setup_vsenv
from run_tests import get_fake_options, run_configure, get_meson_script
from run_tests import get_backend_commands, get_backend_args_for_dir, Backend
from run_tests import ensure_backend_detects_changes
@@ -1356,6 +1356,7 @@ def clear_transitive_files():
mesonlib.windows_proof_rm(str(d))
if __name__ == '__main__':
+ setup_vsenv()
parser = argparse.ArgumentParser(description="Run the test suite of Meson.")
parser.add_argument('extra_args', nargs='*',
help='arguments that are passed directly to Meson (remember to have -- before these).')