pluto/test/kernel/arch/x86/rt-test.py

11 lines
636 B
Python
Raw Normal View History

2019-06-29 23:50:44 +01:00
def getTestCases(TestCase):
return [
TestCase("GDT init", [r"Init gdt", r"Done"]),
TestCase("GDT tests", [r"GDT: Tested loading GDT"]),
2019-06-29 23:50:44 +01:00
TestCase("IDT init", [r"Init idt", r"Done"]),
2019-09-17 18:24:27 +01:00
TestCase("IDT tests", [r"IDT: Tested loading IDT"]),
2019-07-31 22:41:22 +01:00
TestCase("PIT init", [r"Init pit", r".+", "Done"]),
TestCase("Syscalls init", [r"Init syscalls", "Done"]),
TestCase("Syscall tests", [r"Syscalls: Tested no args", r"Syscalls: Tested 1 arg", r"Syscalls: Tested 2 args", r"Syscalls: Tested 3 args", r"Syscalls: Tested 4 args", r"Syscalls: Tested 5 args"])
2019-06-29 23:50:44 +01:00
]