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 /unittests | |
| parent | fc97e4f395e6ad551eb71b97b85df24302bcb7a4 (diff) | |
| download | meson-8938f5efad47364da9e6234660562ae5a05f1c06.tar.gz | |
compilers: Remove Environment parameter from Compiler.sanity_check
Diffstat (limited to 'unittests')
| -rw-r--r-- | unittests/allplatformstests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index d1e5a554d..3f78c72b4 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -2513,7 +2513,7 @@ class AllPlatformTests(BasePlatformTests): try: comp = detect_compiler_for(env, l, MachineChoice.HOST, True, '') with tempfile.TemporaryDirectory() as d: - comp.sanity_check(d, env) + comp.sanity_check(d) langs.append(l) except EnvironmentException: pass |
