release: Move eris to ubuntu 21.10.
- Update readme. - php7 -> php8. - Fix python-coverage. - Also need python decorator module. - Replaced Mcrt1 with rotatingtree since Mcrt1 started raising a new warning.
This commit is contained in:
parent
42bf4d2582
commit
d83bea2ba8
15 changed files with 646 additions and 88 deletions
|
|
@ -145,14 +145,14 @@ class ToolsTestCase(unittest.TestCase):
|
|||
|
||||
def test_objdump_headers(self):
|
||||
self._test_tool(tools.objdump_headers,
|
||||
[("Mcrt1.o", tools.Status.ok)])
|
||||
[("rotatingtree.o", tools.Status.ok)])
|
||||
|
||||
def test_objdump_disassemble(self):
|
||||
self._test_tool(tools.objdump_disassemble,
|
||||
[("Mcrt1.o", tools.Status.problem)])
|
||||
[("rotatingtree.o", tools.Status.problem)])
|
||||
|
||||
def test_readelf(self):
|
||||
self._test_tool(tools.readelf, [("Mcrt1.o", tools.Status.ok)])
|
||||
self._test_tool(tools.readelf, [("rotatingtree.o", tools.Status.ok)])
|
||||
|
||||
def test_zipinfo(self):
|
||||
self._test_tool(tools.zipinfo, [("hi.zip", tools.Status.ok)])
|
||||
|
|
@ -180,8 +180,8 @@ class ToolsTestCase(unittest.TestCase):
|
|||
def test_cpp_syntax_gcc(self):
|
||||
self._test_tool(tools.cpp_syntax_gcc, [("hello.cpp", tools.Status.ok)])
|
||||
|
||||
def test_php7_syntax(self):
|
||||
self._test_tool(tools.php7_syntax, [("root.php", tools.Status.ok)])
|
||||
def test_php8_syntax(self):
|
||||
self._test_tool(tools.php8_syntax, [("root.php", tools.Status.ok)])
|
||||
|
||||
def test_pil(self):
|
||||
for extension in ["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue