diff mbox series

[OSSTEST] cri-args-hostlists: Do not include transcript in reports

Message ID 20200514141626.29137-1-ian.jackson@eu.citrix.com (mailing list archive)
State New, archived
Headers show
Series [OSSTEST] cri-args-hostlists: Do not include transcript in reports | expand

Commit Message

Ian Jackson May 14, 2020, 2:16 p.m. UTC
These transcripts are huge and not useful.

Still include them if sg-secute-flight failed.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
 cri-args-hostlists | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/cri-args-hostlists b/cri-args-hostlists
index 3578fe1c..28d576db 100644
--- a/cri-args-hostlists
+++ b/cri-args-hostlists
@@ -86,8 +86,11 @@  execute_flight () {
         ./sg-execute-flight $1 $2 >tmp/$1.transcript 2>&1
 	local rc=$?
 	set -e
-        cat tmp/$1.transcript
-	test $rc = 0
+        if [ "$rc" != 0 ]; then
+		cat tmp/$1.transcript
+		echo "rc=$rc"
+		exit 1
+	fi
 }
 
 start_email () {