File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/doc/rustc-dev-guide/src/tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -253,8 +253,8 @@ send test programs to `remote-test-server` running on the remote machine.
253253` remote-test-server ` provides * unauthenticated remote code
254254execution* so be careful where it is used.
255255
256- To do this, first build ` remote-test-server ` for the remote machine, e.g. for
257- RISC-V
256+ To do this, first build ` remote-test-server ` for the remote machine
257+ (using RISC-V as an example):
258258
259259``` text
260260./x build src/tools/remote-test-server --target riscv64gc-unknown-linux-gnu
@@ -264,11 +264,11 @@ The binary will be created at `./build/host/stage2-tools/$TARGET_ARCH/release/re
264264Copy this over to the remote machine.
265265
266266On the remote machine, run the ` remote-test-server ` with the `--bind
267- 0.0.0.0:12345` flag (and optionally ` -v` for verbose output ).
267+ 0.0.0.0:12345` flag (and optionally ` --verbose` flag ).
268268Output should look like this:
269269
270270``` text
271- $ ./remote-test-server -v --bind 0.0.0.0:12345
271+ $ ./remote-test-server --verbose --bind 0.0.0.0:12345
272272starting test server
273273listening on 0.0.0.0:12345!
274274```
You can’t perform that action at this time.
0 commit comments