Skip to content

Commit 2ee71ab

Browse files
author
Nick Young
committed
Update verify-all.sh verbose mode to make finding the broken test easier
Signed-off-by: Nick Young <ynick@vmware.com>
1 parent 3d50c85 commit 2ee71ab

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

hack/verify-all.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,12 @@ do
6969
ret=1
7070
fi
7171
else
72-
bash "$t" || ret=1
72+
if bash "$t"; then
73+
echo -e "${color_green}SUCCESS: $t ${color_norm}"
74+
else
75+
echo -e "${color_red}Test FAILED: $t ${color_norm}"
76+
ret=1
77+
fi
7378
fi
7479
done
7580

0 commit comments

Comments
 (0)