Anastasia Klimchuk has submitted this change. ( https://review.coreboot.org/c/flashrom/+/67243 )
(
5 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: test_build.sh: Enforce tests to be enabled ......................................................................
test_build.sh: Enforce tests to be enabled
Signed-off-by: Felix Singer felixsinger@posteo.net Change-Id: I00c23a17926ed112522b083f8594596d051cf9f8 Reviewed-on: https://review.coreboot.org/c/flashrom/+/67243 Reviewed-by: Nico Huber nico.h@gmx.de Reviewed-by: Thomas Heijligen src@posteo.de Reviewed-by: Angel Pons th3fanbus@gmail.com Reviewed-by: Anastasia Klimchuk aklm@chromium.org Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M test_build.sh 1 file changed, 17 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, but someone else must approve Thomas Heijligen: Looks good to me, approved Angel Pons: Looks good to me, but someone else must approve Anastasia Klimchuk: Looks good to me, approved
diff --git a/test_build.sh b/test_build.sh index 68b00ad..b2320b8 100755 --- a/test_build.sh +++ b/test_build.sh @@ -38,7 +38,7 @@
build_meson () { builddir=out - meson $builddir + meson $builddir -Dtests=enabled ninja -C $builddir ninja -C $builddir test }