From 46968c7d2905c10d45c054f6ebfe85f9079c85bb Mon Sep 17 00:00:00 2001 From: Anhad Singh Date: Tue, 14 Jul 2026 21:23:04 +1000 Subject: [PATCH] fix(tests): specify target for test runner Fixes the issue where `relibc-tests-runner` fails to run on Redox. Signed-off-by: Anhad Singh --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 46e38becfc..265c149c1f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -44,7 +44,8 @@ run-once: $(BUILD)/bins_verify/relibc-tests $(BUILD)/$(TESTBIN) support_build $(BUILD)/bins_verify/relibc-tests: src/main.rs mkdir -p $(BUILD)/bins_verify RUSTFLAGS="-C target-feature=-crt-static" $(CARGO_TEST) build --release --bin relibc-tests \ - --artifact-dir $(BUILD)/bins_verify --target-dir $(BUILD)/target -Z unstable-options + --artifact-dir $(BUILD)/bins_verify --target-dir $(BUILD)/target -Z unstable-options \ + --target $(TARGET) rm -rf $(BUILD)/target $(BUILD)/Makefile: Makefile.run.mk