From 46cc984486821875b70697a155b173a71a61398d Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Fri, 1 Mar 2024 15:05:34 +0200 Subject: [PATCH] test: remove test of GCCtoolchain --- test/test_c_execution.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/test_c_execution.py b/test/test_c_execution.py index 4b5fdb1f8..11e336e0d 100644 --- a/test/test_c_execution.py +++ b/test/test_c_execution.py @@ -336,11 +336,6 @@ def test_missing_compilers(): # the default (non-guessed) toolchain! __test(eval_tester, ExecutableCTarget, compiler=ccomp) - # and test that we will fail if we remove a required attribute - del ccomp.toolchain.undefines - with pytest.raises(AttributeError): - __test(eval_tester, ExecutableCTarget, compiler=ccomp) - # next test that some made up compiler can be specified ccomp = CCompiler(cc="foo") assert isinstance(ccomp.toolchain, GCCToolchain) -- GitLab