Skip to content

Commit c32d79c

Browse files
authored
Rollup merge of #104450 - andrewpollack:fix-fuchsia-compiler-docs, r=tmandry
Fuchsia test suite script fix Fixing error from #103842 (comment) r? ```@tmandry```
2 parents 25c3180 + 6211faa commit c32d79c

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/doc/rustc/src/platform-support/fuchsia.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -675,12 +675,18 @@ run the tests on our emulator. To run the full `src/test/ui` test suite:
675675
test src/test/ui \
676676
--target x86_64-fuchsia \
677677
--run=always --jobs 1 \
678-
--test-args --target-rustcflags -L \
679-
--test-args --target-rustcflags ${SDK_PATH}/arch/{x64|arm64}/sysroot/lib \
680-
--test-args --target-rustcflags -L \
681-
--test-args --target-rustcflags ${SDK_PATH}/arch/{x64|arm64}/lib \
682-
--test-args --target-rustcflags -Cpanic=abort \
683-
--test-args --target-rustcflags -Zpanic_abort_tests \
678+
--test-args --target-rustcflags \
679+
--test-args -L \
680+
--test-args --target-rustcflags \
681+
--test-args ${SDK_PATH}/arch/{x64|arm64}/sysroot/lib \
682+
--test-args --target-rustcflags \
683+
--test-args -L \
684+
--test-args --target-rustcflags \
685+
--test-args ${SDK_PATH}/arch/{x64|arm64}/lib \
686+
--test-args --target-rustcflags \
687+
--test-args -Cpanic=abort \
688+
--test-args --target-rustcflags \
689+
--test-args -Zpanic_abort_tests \
684690
--test-args --remote-test-client \
685691
--test-args src/ci/docker/scripts/fuchsia-test-runner.py \
686692
)

0 commit comments

Comments
 (0)