[tools] Removed clang tools.
- They were doubling the size of the AppImage. - The gcc tools do very similar syntax checking.
This commit is contained in:
parent
d90d711703
commit
cbdbac0219
3 changed files with 4 additions and 25 deletions
|
|
@ -167,9 +167,6 @@ class ToolsTestCase(unittest.TestCase):
|
|||
def test_c_syntax_gcc(self):
|
||||
self._test_tool(tools.c_syntax_gcc, [("hello.c", tools.Status.ok)])
|
||||
|
||||
def test_c_syntax_clang(self):
|
||||
self._test_tool(tools.c_syntax_clang, [("hello.c", tools.Status.ok)])
|
||||
|
||||
def test_splint(self):
|
||||
self._test_tool(tools.splint, [("hello.c", tools.Status.ok),
|
||||
("hello.h", tools.Status.ok)])
|
||||
|
|
@ -214,10 +211,6 @@ class ToolsTestCase(unittest.TestCase):
|
|||
def test_cpp_syntax_gcc(self):
|
||||
self._test_tool(tools.cpp_syntax_gcc, [("hello.cpp", tools.Status.ok)])
|
||||
|
||||
def test_cpp_syntax_clang(self):
|
||||
self._test_tool(tools.cpp_syntax_clang,
|
||||
[("hello.cpp", tools.Status.ok)])
|
||||
|
||||
def test_bcpp(self):
|
||||
self._test_tool(tools.bcpp, [("hello.cpp", tools.Status.normal)])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue