From f32fa08d0f70cc0638f6ade02f77b65fddbe6a84 Mon Sep 17 00:00:00 2001 From: Andrey Vagin Date: Tue, 14 Oct 2014 15:41:00 +0400 Subject: [PATCH] zdtm/Makefile: show output for each test In this case we have another chance to not skip errors. Signed-off-by: Andrey Vagin Signed-off-by: Pavel Emelyanov --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 14b63caf7..9ab8f3dc1 100644 --- a/test/Makefile +++ b/test/Makefile @@ -60,6 +60,6 @@ mount_cgroups: .FORCE flock zdtm_mount_cgroups ./zdtm_mount_cgroups $(TST): zdtm_ct mount_cgroups .FORCE - ./zdtm.sh --ct ${ZDTM_ARGS} $(@) &> $(subst /,_,$@).log || \ - { flock Makefile cat $(subst /,_,$@).log; exit 1; } + ./zdtm.sh --ct ${ZDTM_ARGS} $(@) &> $(subst /,_,$@).log; \ + { ret=$$?; flock Makefile cat $(subst /,_,$@).log; exit $$ret; } .PHONY: zdtm_ns