diff options
author | Stefan Weil | 2021-02-02 14:39:56 +0100 |
---|---|---|
committer | Alex Bennée | 2021-02-08 11:55:20 +0100 |
commit | 2a86d66be1a33c2db25e4774def415784bf44131 (patch) | |
tree | 3762a359fc29afa5a8e3961abbb8468d567165ba /tests/tcg | |
parent | gdbstub: Fix handle_query_xfer_auxv (diff) | |
download | qemu-2a86d66be1a33c2db25e4774def415784bf44131.tar.gz qemu-2a86d66be1a33c2db25e4774def415784bf44131.tar.xz qemu-2a86d66be1a33c2db25e4774def415784bf44131.zip |
tests/tcg: Replace /bin/true by true (required on macOS)
/bin/true is missing on macOS, but simply "true" is available as a shell builtin.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210128135627.2067003-1-sw@weilnetz.de>
Message-Id: <20210202134001.25738-12-alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/Makefile.qemu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tcg/Makefile.qemu b/tests/tcg/Makefile.qemu index c096c611a2..a56564660c 100644 --- a/tests/tcg/Makefile.qemu +++ b/tests/tcg/Makefile.qemu @@ -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 |