Commit ddc6789d authored by Andrey Vagin's avatar Andrey Vagin Committed by Pavel Emelyanov

test: don't skip errors if someone fails

Signed-off-by: 's avatarAndrey Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 1b234fd8
......@@ -6,7 +6,7 @@ EXP = '^ns/(?!.*(tty|pty))'
zdtm: .FORCE
$(MAKE) zdtm_ns
for t in $(shell echo "$(TST)" | tr ' ' '\n' | grep -Pv $(EXP)); do \
$(MAKE) $$t; \
$(MAKE) $$t || break; \
done
zdtm_ns: $(shell echo "$(TST)" | tr ' ' '\n' | grep -P $(EXP))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment