diff options
author | Jakub Czapiga <jacz@semihalf.com> | 2021-05-17 12:22:48 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-18 10:09:59 +0000 |
commit | 9482807f1da6b8a39f691384dd9e3c94589a658f (patch) | |
tree | 81c054a6e016873e1979eac1ce262ca0cfb987d3 | |
parent | a7bf0df24f7aca50309232d185366eb94355f34f (diff) | |
download | coreboot-9482807f1da6b8a39f691384dd9e3c94589a658f.tar.xz |
util/testing/Makefile.inc: Add new line as help section separator
coreboot test targets help section was missing an empty line at the end.
This caused the next help section to be visually merged with it.
Empty line makes help output more aesthetic.
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: I2f7202b0a636f62b60788215058611c9c86183de
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54367
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
-rw-r--r-- | util/testing/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc index a8910ee68a..0d1053a72f 100644 --- a/util/testing/Makefile.inc +++ b/util/testing/Makefile.inc @@ -10,6 +10,7 @@ test-help help:: @echo ' test-abuild - basic: Builds all platforms' @echo ' test-payloads - basic: Builds internal payloads' @echo ' test-cleanup - basic: Cleans coreboot directories' + @echo # junit.xml is a helper target to wrap builds that don't create junit.xml output # BLD = The name of the build |