]> Git Repo - qemu.git/commitdiff
tests/tcg: Replace /bin/true by true (required on macOS)
authorStefan Weil <[email protected]>
Tue, 2 Feb 2021 13:39:56 +0000 (13:39 +0000)
committerAlex Bennée <[email protected]>
Mon, 8 Feb 2021 10:55:20 +0000 (10:55 +0000)
/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: <20210128135627.2067003[email protected]>
Message-Id: <20210202134001[email protected]>

tests/tcg/Makefile.qemu

index c096c611a2b4ed4572301fa359243c5d9c352809..a56564660cfa3dc3f281cbfd6435387b9bd2618f 100644 (file)
@@ -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
 
This page took 0.030372 seconds and 4 git commands to generate.