run_unittests: fix undefined variable in error message

In commit fe973d9fc4, some uses of p got
rewritten to compiler.language, but not all. We'd still raise an error
message, but for the wrong thing. o_O
This commit is contained in:
Eli Schwartz 2021-02-05 15:25:10 -05:00 committed by Dylan Baker
parent c3d516421f
commit 67e99bb4ed
1 changed files with 1 additions and 1 deletions

View File

@ -6417,7 +6417,7 @@ class LinuxlikeTests(BasePlatformTests):
elif compiler.language == 'cpp':
env_flag_name = 'CXXFLAGS'
else:
raise NotImplementedError('Language {} not defined.'.format(p))
raise NotImplementedError('Language {} not defined.'.format(compiler.language))
env = {}
env[env_flag_name] = cmd_std
with self.assertRaises((subprocess.CalledProcessError, mesonbuild.mesonlib.EnvironmentException),