From f08dd26f626ac6d9dbc24971f09cee7819654424 Mon Sep 17 00:00:00 2001 From: Diogo Costa Date: Mon, 29 Jan 2024 15:27:21 +0000 Subject: [PATCH] feat(guest): add log_level definition to remote baremetal build Signed-off-by: Diogo Costa --- pkgs/guest/baremetal-remote-tf.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/guest/baremetal-remote-tf.nix b/pkgs/guest/baremetal-remote-tf.nix index d3fd38b..57b4494 100644 --- a/pkgs/guest/baremetal-remote-tf.nix +++ b/pkgs/guest/baremetal-remote-tf.nix @@ -11,6 +11,7 @@ , platform_cfg , list_tests , list_suites +, log_level ? "2" , bao-tests , tests_srcs , testf_patch ? " " @@ -60,7 +61,7 @@ stdenv.mkDerivation rec { export TESTF_TESTS_DIR=$out/tests/src export TESTF_REPO_DIR=$out/tests/bao-tests chmod -R u+w $out/tests/bao-tests - make -C $out PLATFORM=${platform} BAO_TEST=1 SUITES=${list_suites} TESTS=${list_tests} + make -C $out PLATFORM=${platform} BAO_TEST=1 SUITES=${list_suites} TESTS=${list_tests} TESTF_LOG_LEVEL=${log_level} ''; installPhase = ''