diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-10-31 11:27:53 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | 8938f5efad47364da9e6234660562ae5a05f1c06 (patch) | |
| tree | 0f242235ed9c95f94be0605ef16273d256ce98cd /run_project_tests.py | |
| parent | fc97e4f395e6ad551eb71b97b85df24302bcb7a4 (diff) | |
| download | meson-8938f5efad47364da9e6234660562ae5a05f1c06.tar.gz | |
compilers: Remove Environment parameter from Compiler.sanity_check
Diffstat (limited to 'run_project_tests.py')
| -rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index c92df2b9f..62fe73ac3 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -999,7 +999,7 @@ def have_working_compiler(lang: str, use_tmp: bool) -> bool: return False env.coredata.process_compiler_options(lang, compiler, '') try: - compiler.sanity_check(env.get_scratch_dir(), env) + compiler.sanity_check(env.get_scratch_dir()) except mesonlib.MesonException: return False return True |
