diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2023-04-14 23:00:33 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-14 23:00:33 +0900 |
| commit | 9aa24fd8fb6f59381f7c3af8a8b13e6bd5274828 (patch) | |
| tree | d639ebe7dbad34a58ee67d9a8eb42946c130fc03 /src/librustdoc | |
| parent | 3e565f1a27a19f7da48c7109500b4351c0819e68 (diff) | |
| parent | 2e924bbef303ee8fc610e49d81825c2263b0b4bf (diff) | |
| download | rust-9aa24fd8fb6f59381f7c3af8a8b13e6bd5274828.tar.gz rust-9aa24fd8fb6f59381f7c3af8a8b13e6bd5274828.zip | |
Rollup merge of #103682 - Swatinem:stable-run-directory, r=GuillaumeGomez
Stabilize rustdoc `--test-run-directory` This should resolve https://github.com/rust-lang/rust/issues/84674
Diffstat (limited to 'src/librustdoc')
| -rw-r--r-- | src/librustdoc/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index b3640eab953..60c98cc3831 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -284,7 +284,7 @@ fn opts() -> Vec<RustcOptGroup> { stable("test-args", |o| { o.optmulti("", "test-args", "arguments to pass to the test runner", "ARGS") }), - unstable("test-run-directory", |o| { + stable("test-run-directory", |o| { o.optopt( "", "test-run-directory", |
