1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import os, sys, mmap
- from regression import Regression
- loader = os.environ['PAL_LOADER']
- regression = Regression(loader, "Process", timeout=8000)
- def check_times(target, lines, times):
- count = 0
- for line in lines:
- if target == line:
- count += 1
- return count == times
- regression.add_check(name="Process Creation",
- check=lambda res: check_times("Child Process Created", res[0].log, 3))
- regression.add_check(name="Process Creation Arguments",
- check=lambda res: check_times("argv[0] = Process", res[0].log, 3) and
- check_times("argv[1] = Child", res[0].log, 3))
- regression.add_check(name="Process Channel Transmission",
- check=lambda res: check_times("Process Write 1 OK", res[0].log, 3) and
- check_times("Process Read 1: Hello World 1", res[0].log, 3) and
- check_times("Process Write 2 OK", res[0].log, 3) and
- check_times("Process Read 2: Hello World 2", res[0].log, 3))
- def check_broadcast_result(res):
- if not check_times("Warning: broadcast stream is not open. "
- "Do you have a multicast route configured?",
- res[0].log, 0):
- print("Could not open broadcast stream. Dou you have a multicast route configured?")
- return (check_times("Broadcast Write OK", res[0].log, 1) and
- check_times("Broadcast Read: Hello World 1", res[0].log, 3))
- regression.add_check(name="Multi-Process Broadcast Channel Transmission",
- check=check_broadcast_result)
- rv = regression.run_checks()
- if rv: sys.exit(rv)
- regression = Regression(loader, "Process2")
- regression.add_check(name="Process Creation with a Different Binary",
- check=lambda res: check_times("User Program Started", res[0].log, 1))
- rv = regression.run_checks()
- if rv: sys.exit(rv)
- regression = Regression(loader, "Process3")
- regression.add_check(name="Process Creation without Executable",
- check=lambda res: check_times("Binary 1 Preloaded", res[0].log, 2) and
- check_times("Binary 2 Preloaded", res[0].log, 2))
- rv = regression.run_checks()
- if rv: sys.exit(rv)
|