mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-02-08 12:53:34 +08: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)
|