diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-29 09:21:08 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 15:06:10 -0700 |
commit | 135f5d5838263e2afd344d916710071037ffcadc (patch) | |
tree | a7cb5c7cbd5cc94941ac6dbc070709f72eba5400 /run_unittests.py | |
parent | 577a2de7e87128b75e8e7e0c5d1a35986d43fd14 (diff) | |
download | meson-135f5d5838263e2afd344d916710071037ffcadc.zip meson-135f5d5838263e2afd344d916710071037ffcadc.tar.gz meson-135f5d5838263e2afd344d916710071037ffcadc.tar.bz2 |
compilers: make get_optimization_args abstract
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py index db61ca6..7ddf17d 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -360,7 +360,7 @@ class InternalTests(unittest.TestCase): stat.S_IRGRP | stat.S_IXGRP) def test_compiler_args_class_none_flush(self): - cc = mesonbuild.compilers.CCompiler([], 'fake', False, MachineChoice.HOST, mock.Mock()) + cc = mesonbuild.compilers.ClangCCompiler([], 'fake', MachineChoice.HOST, False, mock.Mock()) a = cc.compiler_args(['-I.']) #first we are checking if the tree construction deduplicates the correct -I argument a += ['-I..'] @@ -383,8 +383,8 @@ class InternalTests(unittest.TestCase): a += ['-Ifirst'] self.assertEqual(a, ['-Ifirst', '-Isecond', '-Ithird']) - def test_compiler_args_class(self): - cc = mesonbuild.compilers.CCompiler([], 'fake', False, MachineChoice.HOST, mock.Mock()) + def test_compiler_args_class_clike(self): + cc = mesonbuild.compilers.ClangCCompiler([], 'fake', MachineChoice.HOST, False, mock.Mock()) # Test that empty initialization works a = cc.compiler_args() self.assertEqual(a, []) |