mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
In most cases we run tests as: ./test/zdtm.py run -a But it's also possible to run tests from root makefile: make test In this case, if criu tree have no ./test/umount2 binary built we get the error like: make[3]: *** No rule to make target 'umount2'. Stop. It's worth to mention this "3". That's because we have build process tree like this: make -> make -> make -> zdtm.py -> make umount2 and also we have MAKEFLAGS variable set to: build=-r -R -f ... And that's bad because "-r" option means no builtin rules and -R means no builtin variables. That makes `make umount2` not working. Let's just cleanup this variable to make things work properly. Fixes: #1699 https://github.com/checkpoint-restore/criu/issues/1699 Signed-off-by: Alexander Mikhalitsyn <alexander.mikhalitsyn@virtuozzo.com> |
||
|---|---|---|
| .. | ||
| compel | ||
| exhaustive | ||
| inhfd | ||
| javaTests | ||
| jenkins | ||
| others | ||
| pki | ||
| zdtm | ||
| .gitignore | ||
| abrt.sh | ||
| check_actions.py | ||
| crit-recode.py | ||
| empty-netns-prep.sh | ||
| groups.desc | ||
| inhfd.desc | ||
| Makefile | ||
| pycriu | ||
| show_action.sh | ||
| umount2.c | ||
| zdtm.desc | ||
| zdtm.py | ||
| zdtm_ct.c | ||
| zdtm_mount_cgroups | ||
| zdtm_umount_cgroups | ||