diff options
Diffstat (limited to 'tests/scanner/test_ccompiler.py')
-rw-r--r-- | tests/scanner/test_ccompiler.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/scanner/test_ccompiler.py b/tests/scanner/test_ccompiler.py index 5890aa9b..6c0674a1 100644 --- a/tests/scanner/test_ccompiler.py +++ b/tests/scanner/test_ccompiler.py @@ -62,6 +62,11 @@ class UnixCCompilerTest(unittest.TestCase): except ValueError: self.fail('%r is not a subsequence of %r' % (list1, list2)) + def test_link_cmd(self): + with Environ(dict(CC="foobar")): + compiler = CCompiler() + self.assertEqual(compiler.linker_cmd[0], "foobar") + def test_link_args_override(self): with Environ(dict(CC="foobar")): compiler = CCompiler() |