Skip to content

Commit

Permalink
feat(guest): add log_level definition to remote baremetal build
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo Costa <diogoandreveigacosta@gmail.com>
  • Loading branch information
Diogo21Costa committed Jan 29, 2024
1 parent 58a2eea commit f08dd26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/guest/baremetal-remote-tf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
, platform_cfg
, list_tests
, list_suites
, log_level ? "2"
, bao-tests
, tests_srcs
, testf_patch ? " "
Expand Down Expand Up @@ -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 = ''
Expand Down

0 comments on commit f08dd26

Please sign in to comment.