[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:
Andrew Hamilton 2017-07-17 10:50:18 +01:00
parent d90d711703
commit cbdbac0219
3 changed files with 4 additions and 25 deletions

View file

@ -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)])