1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

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>
This commit is contained in:
Felix Singer 2022-08-31 11:53:17 +02:00 committed by Anastasia Klimchuk
parent 845b10694d
commit c8b23a0902

View File

@ -38,7 +38,7 @@ build_make () {
build_meson () {
builddir=out
meson $builddir
meson $builddir -Dtests=enabled
ninja -C $builddir
ninja -C $builddir test
}