mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-20 16:51:37 +00:00
This test suite contains many small test cases for different subsystems. Example of execution: # make busyloop00.pid # ../../../../crtools -d -t `cat busyloop00.pid` # kill -9 `cat busyloop00.pid` # ../../../../crtools -r -t `cat busyloop00.pid` # cat busyloop00.out PASS Signed-off-by: Andrey Vagin <avagin@openvz.org> Acked-by: Pavel Emelyanov <xemul@parallels.com> Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
8 lines
111 B
Makefile
8 lines
111 B
Makefile
SUBDIRS = lib live
|
|
|
|
default: all
|
|
|
|
.PHONY: default
|
|
|
|
%:
|
|
set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
|