Skip to content

Commit

Permalink
tests/tcg: Replace /bin/true by true (required on macOS)
Browse files Browse the repository at this point in the history
/bin/true is missing on macOS, but simply "true" is available as a shell builtin.

Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Alex Bennée <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <[email protected]>
Message-Id: <[email protected]>
  • Loading branch information
stweil authored and stsquad committed Feb 8, 2021
1 parent 6e3dd75 commit 2a86d66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tcg/Makefile.qemu
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ run-guest-tests: guest-tests

else
guest-tests:
$(call quiet-command, /bin/true, "BUILD", \
$(call quiet-command, true, "BUILD", \
"$(TARGET) guest-tests SKIPPED")

run-guest-tests:
$(call quiet-command, /bin/true, "RUN", \
$(call quiet-command, true, "RUN", \
"tests for $(TARGET) SKIPPED")
endif

Expand Down

0 comments on commit 2a86d66

Please sign in to comment.