mirror of
https://github.com/LearningOS/lab0-0-setup-env-run-os1-d0zingcat.git
synced 2026-05-15 15:09:19 +00:00
18 lines
265 B
Python
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)
|