1From 38688ee2754415cf2a1935dafb8278861b7315e7 Mon Sep 17 00:00:00 2001 2From: Stefan Strogin <sstrogin@cisco.com> 3Date: Thu, 2 Mar 2017 00:26:31 +0200 4Subject: [PATCH] test: add output in the format "result: testname" 5 6Upstream-Status: Inappropriate [oe specific] 7 8Signed-off-by: Stefan Strogin <sstrogin@cisco.com> 9--- 10 src/test/runtests.sh | 2 ++ 11 1 file changed, 2 insertions(+) 12 13diff --git a/src/test/runtests.sh b/src/test/runtests.sh 14index a3eaad0..64f0705 100755 15--- a/src/test/runtests.sh 16+++ b/src/test/runtests.sh 17@@ -34,8 +34,10 @@ do 18 then 19 n_failed=`expr ${n_failed} + 1` 20 tests_failed="$tests_failed $testfile" 21+ echo "FAIL: $testfile" 22 else 23 touch lastrun/$testfile 24+ echo "PASS: $testfile" 25 fi 26 done 27 28-- 292.11.0 30 31