diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/quick/se/01.hello-2T-smt/test.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/quick/se/01.hello-2T-smt/test.py b/tests/quick/se/01.hello-2T-smt/test.py index b6c3c71a2..acfdb9bc2 100644 --- a/tests/quick/se/01.hello-2T-smt/test.py +++ b/tests/quick/se/01.hello-2T-smt/test.py @@ -26,7 +26,8 @@ # # Authors: Korey Sewell -process1 = Process(cmd = 'hello', executable = binpath('hello')) -process2 = Process(cmd = 'hello', executable = binpath('hello')) +process1 = Process(cmd = 'hello', executable = binpath('hello'), pid = 100) +process2 = Process(cmd = 'hello', executable = binpath('hello'), + pid = 101, ppid = 100) root.system.cpu[0].workload = [process1, process2] |