Lines Matching refs:process
2 This bash script tests freezer code by starting a long sleep process.
4 After we cancel the sleep process should eventually reach the thawed
5 state. We expect the process to still be alive as we cleanup the test.
8 This bash script tests freezer code by starting a long sleep process.
9 The sleep process is frozen. We then kill the sleep process.
10 Then we unfreeze the sleep process and see what happens. We expect the
11 sleep process to receive the kill signals and exit almost immediately
15 This bash script tests freezer code by starting a long sleep process.
16 The sleep process is frozen. We then move the sleep process to a THAWED
17 cgroup. We expect moving the sleep process to fail.
20 This bash script tests freezer code by starting a long subshell process.
21 The subshell process sleeps and then freezes the control group it is a
22 part of. We then thaw the subshell process. We expect the unthawed
23 subshell process to need cleanup afterwards (allows us to test
27 This bash script tests freezer code by starting a long sleep process.
28 The sleep process is frozen. We then wait until the sleep process should
29 have exited. Then we unfreeze the sleep process. We expect the
30 sleep process to wakeup almost immediately after the cgroup is thawed,
35 This bash script tests freezer code by starting a long sleep process.
36 The sleep process is frozen. We then thaw the process before it exits.
37 We expect the process to still be alive as we cleanup the test.
45 This bash script tests freezer code by starting a long sleep process.
46 The sleep process is stopped and then frozen. We then thaw the process
48 We expect the process to still be around as we cleanup the test.
51 This bash script tests freezer code by starting a long sleep process.
52 The sleep process is stopped and then frozen. We then thaw the process
54 We expect the process to still be around as we cleanup the test.
57 This bash script tests freezer code by starting a process with vfork(2).