File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ override `ignore`.
453
453
454
454
### ` --runtool ` , ` --runtool-arg ` : program to run tests with; args to pass to it
455
455
456
- Using thses options looks like this:
456
+ Using these options looks like this:
457
457
458
458
``` bash
459
459
$ rustdoc src/lib.rs -Z unstable-options --runtool runner --runtool-arg --do-thing --runtool-arg --do-other-thing
@@ -467,3 +467,20 @@ $ rustdoc src/lib.rs -Z unstable-options --runtool valgrind
467
467
```
468
468
469
469
Another use case would be to run a test inside an emulator, or through a Virtual Machine.
470
+
471
+ ### ` --source-code-external-url ` : using external source code
472
+
473
+ In case you don't want to generate the source code files and instead use existing ones (available
474
+ through an HTTP URL!), you can use this option:
475
+
476
+ ``` bash
477
+ $ rustdoc src/lib.rs -Z unstable-options --source-code-external-url ' https://somewhere.com'
478
+ ```
479
+
480
+ Note that generated source URLs will look like this:
481
+
482
+ ``` text
483
+ https://somewhere.com/[crate name]
484
+ ```
485
+
486
+ It is equivalent to the local ` src/[crate name] ` folder.
You can’t perform that action at this time.
0 commit comments