blob: 815ae9c91546df9fd6632455dac9ddee99018591 [file] [log] [blame]
Patrick Williams705982a2024-01-12 09:51:57 -06001From fc5de1de898fd1a372a2fd2fa493dc57323a029d Mon Sep 17 00:00:00 2001
2From: Tudor Florea <tudor.florea@enea.com>
3Date: Thu, 3 Dec 2015 04:08:00 +0100
4Subject: [PATCH] Display testname for subtest
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05005
6Signed-off-by: Tudor Florea <tudor.florea@enea.com>
7Upstream-Status: Pending
8
Patrick Williamsc0f7c042017-02-23 20:41:17 -06009---
10 tests/functions.sh | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/tests/functions.sh b/tests/functions.sh
Patrick Williams705982a2024-01-12 09:51:57 -060014index 5a562a3..098145e 100644
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015--- a/tests/functions.sh
16+++ b/tests/functions.sh
Patrick Williams705982a2024-01-12 09:51:57 -060017@@ -437,7 +437,7 @@ function ts_init_subtest {
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018
19 if [ "$TS_PARSABLE" != "yes" ]; then
20 [ $TS_NSUBTESTS -eq 1 ] && echo
21- printf "%16s: %-27s ..." "" "$TS_SUBNAME"
22+ printf "%13s: %-30s ..." "$TS_COMPONENT" "$TS_SUBNAME"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050023 fi
24 }
Patrick Williamsc0f7c042017-02-23 20:41:17 -060025