aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-08-21 15:04:37 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-09-24 12:14:13 -0700
commit79d1ecd5bc550395ca62ebecdcf37a4c40d0e1cc (patch)
treecc32eaf48c5f14830abf059c88cc87802d6040c4 /run_unittests.py
parentce04a279ae1f782983e448deb8b9b5d88c7921ad (diff)
downloadmeson-79d1ecd5bc550395ca62ebecdcf37a4c40d0e1cc.zip
meson-79d1ecd5bc550395ca62ebecdcf37a4c40d0e1cc.tar.gz
meson-79d1ecd5bc550395ca62ebecdcf37a4c40d0e1cc.tar.bz2
compilers/compilers: Fully type annotate
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 6b817bb..d8a2a7b 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -377,7 +377,7 @@ class InternalTests(unittest.TestCase):
self.assertEqual(a, ['-I.', '-I./tests2/', '-I./tests/', '-I..'])
def test_compiler_args_class_d(self):
- d = mesonbuild.compilers.DCompiler([], 'fake', MachineChoice.HOST, 'info', 'arch', False, None)
+ d = mesonbuild.compilers.DmdDCompiler([], 'fake', MachineChoice.HOST, 'info', 'arch')
# check include order is kept when deduplicating
a = d.compiler_args(['-Ifirst', '-Isecond', '-Ithird'])
a += ['-Ifirst']