Merge pull request #48 from SamTebbs33/feature/runtime-testing

Add runtime testing harness
This commit is contained in:
Sam Tebbs 2019-07-09 23:27:44 +01:00 committed by GitHub
commit 811ee30f17
9 changed files with 103 additions and 13 deletions

View file

@ -0,0 +1,6 @@
def getTestCases(TestCase):
return [
TestCase("GDT init", [r"Init gdt", r"Done"]),
TestCase("IDT init", [r"Init idt", r"Done"]),
TestCase("PIT init", [r"Init pit", r".+", "Done"])
]