You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
7 months ago | |
---|---|---|
.. | ||
00_description.txt | 7 months ago | |
CHANGELOG | 7 months ago | |
COPYING | 7 months ago | |
Makefile | 7 months ago | |
README | 7 months ago | |
TODO | 7 months ago | |
fork_exec_loop.c | 7 months ago | |
fork_freeze.sh | 7 months ago | |
freeze_cancel.sh | 7 months ago | |
freeze_kill_thaw.sh | 7 months ago | |
freeze_move_thaw.sh | 7 months ago | |
freeze_self_thaw.sh | 7 months ago | |
freeze_sleep_thaw.sh | 7 months ago | |
freeze_thaw.sh | 7 months ago | |
freeze_write_freezing.sh | 7 months ago | |
libcgroup_freezer | 7 months ago | |
libltp | 7 months ago | |
run_freezer.sh | 7 months ago | |
stop_freeze_sleep_thaw_cont.sh | 7 months ago | |
stop_freeze_thaw_cont.sh | 7 months ago | |
timed_forkbomb.c | 7 months ago | |
vfork.c | 7 months ago | |
vfork_freeze.sh | 7 months ago | |
write_freezing.sh | 7 months ago |
README
============================================================== Test Suite for the Control Group Freezer and Signal Subsystems ============================================================== Author: Matt Helsley Date: June, 2008 Last update: January 19th, 2009 About: ------ These tests exercise the freezer and signal subsystems (aka controllers) available since kernel 2.6.28 or later. These tests exercise the freezer control group controller. This controller is a useful for implementing container checkpointing or if you wish to gradually freeze tasks in cgroups before doing a suspend. The common case is embodied in the freeze_thaw.sh test file. However, the scripts are also designed to test a few obscure cases such as: freeze self -- freeze the control group that the current process is in freeze cancellation -- freeze but then backout of the freeze processing and issue a "thaw" command before reaching the frozen state signalling freezing/frozen tasks -- this should delay delivery of the signal until the task is unfrozen vfork -- The vfork system call introduces an obscure special case for the freezer kernel code. This test case attempts to trigger any unanticipated corner cases involving vfork. NOTES: Using the cgroup freezer prevents the tasks from being automatically woken up upon a "Power Management Resume". You will need to manually unfreeze cgroups. These tests assume that most of the library functions in libcgroup_subsys take much less than $sample_sleep time to execute. If this assumption is incorrect then many of these tests may fail in unusual ways. So make sure $sample_sleep is a "reasonable" amount of time. Building: --------- Run the command line: make all Installing: ----------- Run the command line: Cleaning: --------- Run the command line: make clean Running: -------- Run the command line: ./run.sh Results: -------- The results should show up as PASS/FAIL in the LTP logs for each script. The output frequently will be more specific (beyond which test script failed) about where and what failure occurred.