Files
rust-based-os-comp2022/ci-user/check/ch2.py
2022-06-28 09:27:28 +08:00

18 lines
265 B
Python

import base
EXPECTED = [
"Hello, world from user mode program!",
"Test power_3 OK!",
"Test power_5 OK!",
"Test power_7 OK!",
]
TEMP = []
NOT_EXPECTED = [
"FAIL: T.T",
]
if __name__ == "__main__":
base.test(EXPECTED + TEMP, NOT_EXPECTED)