Skip to content

Commit

Permalink
fix(freertos_tf): update recip to support list of tests
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo Costa <[email protected]>
  • Loading branch information
Diogo21Costa committed Sep 4, 2024
1 parent bcb1ddf commit d2180f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/guest/tf/freertos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ stdenv.mkDerivation rec {
if [ "$ARCH" == "aarch64" ]; then
make -C $out PLATFORM=${setup-cfg.platform_name} \
BAO_TEST=1 SUITES=${list_suites} TESTS=${list_tests} \
BAO_TEST=1 SUITES="${list_suites}" TESTS="${list_tests}" \
TESTF_LOG_LEVEL=${log_level} \
${setup-cfg.irq_flags} $FREERTOS_PARAMS
else
make -C $out PLATFORM=${setup-cfg.platform_name} \
BAO_TEST=1 SUITES=${list_suites} TESTS=${list_tests} \
BAO_TEST=1 SUITES="${list_suites}" TESTS=${list_tests}" \
TESTF_LOG_LEVEL=${log_level} $FREERTOS_PARAMS
fi
'';
Expand Down

0 comments on commit d2180f2

Please sign in to comment.