mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 13:51:28 +00:00
On SGX spawning processes got slower since we measure/zero all memory. So the timeout is slightly missed.
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
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)
|
|
|