qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] tests/tcg: Replace /bin/true by true (required on macOS)


From: Stefan Weil
Subject: [PATCH] tests/tcg: Replace /bin/true by true (required on macOS)
Date: Thu, 28 Jan 2021 14:56:27 +0100

/bin/true is missing on macOS, but simply "true" is available as a shell 
builtin.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
---

A similar change might be needed for tests/qemu-iotests.

Regards,
Stefan

 tests/tcg/Makefile.qemu | 4 ++--
 1 file 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
 
-- 
2.24.3 (Apple Git-128)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]