From cde01d58104b515422f86ed629b106bd30541b93 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Fri, 22 Feb 2013 13:22:42 -0500 Subject: [PATCH] allow run_tests.sh to report why it failed the set -e was suppressing all the echo information about why run_tests.sh was failing, which makes it quite hard to figure out what is going on. Change-Id: Ie210ee5b5e9ff0028a89da520580db7cd1d9f03a --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 74a25312f..03759ab62 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -eu +set -u function usage { echo "Usage: $0 [OPTION]..." -- 2.45.2