ソースを参照

test: include exit status in test failure reason

This was intended, but was missing due to a typo in the test status
variable.
Michael Forney 4 年 前
コミット
2dd269f522
1 ファイル変更1 行追加1 行削除
  1. 1 1
      tools/test.sh

+ 1 - 1
tools/test.sh

@@ -143,7 +143,7 @@ once() {
 	else
 		$qemu $exe a b c
 		ret=$?
-		reason="returned $RET"
+		reason="returned $ret"
 	fi
 
 	if test $ret -ne 0