diff options
author | Martin Roth <gaumless@gmail.com> | 2018-05-19 17:59:10 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-22 07:25:54 +0000 |
commit | 1613e25be19eb51c9274437a1dfcace9ad1a999c (patch) | |
tree | 741f390b610bc29b7e4118af63f76f1eb17a5fa1 /util/testing | |
parent | 7a604bbccd604a6110c4e8761a5c3e99ac292304 (diff) | |
download | coreboot-1613e25be19eb51c9274437a1dfcace9ad1a999c.tar.xz |
util/testing: Convert tegra124 and tegra210 builds to junit
Because the tegra124 & tegra201 lp0 builds weren't junit tests, the
builds weren't actually picked up by jenkins, so any failures were
not previously reported.
Change-Id: Ie443ca713912d01ccf6921ce49f846d7297163ef
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: https://review.coreboot.org/26422
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/testing')
-rw-r--r-- | util/testing/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc index d9bb0f78e5..839580e9ee 100644 --- a/util/testing/Makefile.inc +++ b/util/testing/Makefile.inc @@ -91,8 +91,8 @@ what-jenkins-does: unset COREBOOT_BUILD_DIR;$(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=payloads/nvramcui BLD=nvramcui MFLAGS= MAKEFLAGS= MAKETARGET=all junit.xml unset COREBOOT_BUILD_DIR;$(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=payloads/coreinfo BLD=coreinfo MFLAGS= MAKEFLAGS= MAKETARGET=defaultbuild junit.xml $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=util/romcc BLD=romcc MFLAGS= MAKEFLAGS= MAKETARGET=test junit.xml - $(MAKE) -C src/soc/nvidia/tegra124/lp0 all clean - $(MAKE) -C src/soc/nvidia/tegra210/lp0 all clean + $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=src/soc/nvidia/tegra124/lp0 BLD=tegra124_lp0 MFLAGS= MAKEFLAGS= MAKETARGET=all junit.xml + $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=src/soc/nvidia/tegra210/lp0 BLD=tegra120_lp0 MFLAGS= MAKEFLAGS= MAKETARGET=all junit.xml test-basic: test-lint test-tools test-abuild test-payloads test-cleanup |