Skip to content

Commit 0e00bda

Browse files
committed
update some links
1 parent c23f07d commit 0e00bda

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

compiler/rustc_codegen_cranelift/scripts/test_rustc_tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ rm -r tests/run-make/llvm-___location-discriminator-limit-dummy-span # same
9292
rm tests/ui/abi/stack-protector.rs # requires stack protector support
9393
rm -r tests/run-make/emit-stack-sizes # requires support for -Z emit-stack-sizes
9494
rm -r tests/run-make/optimization-remarks-dir # remarks are LLVM specific
95-
rm -r tests/ui/optimization-remark.rs # same
95+
rm -r tests/ui/codegen/remark-flag-functionality.rs # same
9696
rm -r tests/run-make/print-to-output # requires --print relocation-models
9797

9898
# requires asm, llvm-ir and/or llvm-bc emit support
@@ -144,7 +144,7 @@ rm tests/ui/lint/non-snake-case/lint-non-snake-case-crate.rs # same
144144
rm tests/ui/async-await/async-drop/async-drop-initial.rs # same (rust-lang/rust#140493)
145145
rm -r tests/ui/codegen/equal-pointers-unequal # make incorrect assumptions about the ___location of stack variables
146146

147-
rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
147+
rm tests/ui/io-checks/io-stdout-blocking-writes.rs # really slow with unoptimized libstd
148148
rm tests/ui/intrinsics/panic-uninitialized-zeroed.rs # same
149149
rm tests/ui/process/process-panic-after-fork.rs # same
150150

compiler/rustc_codegen_gcc/tests/failing-ice-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ tests/ui/functions-closures/parallel-codegen-closures.rs
3333
tests/ui/sepcomp/sepcomp-unwind.rs
3434
tests/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs
3535
tests/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs
36-
tests/ui/unwind-no-uwtable.rs
36+
tests/ui/panics/unwind-force-no-unwind-tables.rs
3737
tests/ui/delegation/fn-header.rs
3838
tests/ui/simd/intrinsic/generic-arithmetic-pass.rs
3939
tests/ui/simd/masked-load-store.rs

compiler/rustc_codegen_gcc/tests/failing-lto-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ tests/ui/macros/macro-comma-behavior-rpass.rs
2828
tests/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
2929
tests/ui/macros/rfc-2011-nicer-assert-messages/feature-gate-generic_assert.rs
3030
tests/ui/macros/stringify.rs
31-
tests/ui/reexport-test-harness-main.rs
31+
tests/ui/attributes/reexport-test-harness-entry-point.rs
3232
tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-in-test.rs
3333
tests/ui/binding/fn-arg-incomplete-pattern-drop-order.rs

compiler/rustc_codegen_gcc/tests/failing-ui-tests.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ tests/ui/iterators/iter-sum-overflow-overflow-checks.rs
1010
tests/ui/mir/mir_drop_order.rs
1111
tests/ui/mir/mir_let_chains_drop_order.rs
1212
tests/ui/mir/mir_match_guard_let_chains_drop_order.rs
13-
tests/ui/oom_unwind.rs
13+
tests/ui/panics/oom-panic-unwind.rs
1414
tests/ui/panic-runtime/abort-link-to-unwinding-crates.rs
1515
tests/ui/panic-runtime/abort.rs
1616
tests/ui/panic-runtime/link-to-abort.rs
17-
tests/ui/unwind-no-uwtable.rs
17+
tests/ui/panics/unwind-force-no-unwind-tables.rs
1818
tests/ui/parser/unclosed-delimiter-in-dep.rs
1919
tests/ui/consts/missing_span_in_backtrace.rs
2020
tests/ui/drop/dynamic-drop.rs

compiler/rustc_codegen_gcc/tests/failing-ui-tests12.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tests/ui/simd/issue-89193.rs
3636
tests/ui/issues/issue-68010-large-zst-consts.rs
3737
tests/ui/rust-2018/proc-macro-crate-in-paths.rs
3838
tests/ui/target-feature/missing-plusminus.rs
39-
tests/ui/sse2.rs
39+
tests/ui/target-feature/target-feature-detection.rs
4040
tests/ui/codegen/issue-79865-llvm-miscompile.rs
4141
tests/ui/std-backtrace.rs
4242
tests/ui/mir/alignment/packed.rs

compiler/rustc_hir_typeck/src/method/confirm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl<'a, 'tcx> ConfirmContext<'a, 'tcx> {
116116
// If there is a `Self: Sized` bound and `Self` is a trait object, it is possible that
117117
// something which derefs to `Self` actually implements the trait and the caller
118118
// wanted to make a static dispatch on it but forgot to import the trait.
119-
// See test `tests/ui/issue-35976.rs`.
119+
// See test `tests/ui/issues/issue-35976.rs`.
120120
//
121121
// In that case, we'll error anyway, but we'll also re-run the search with all traits
122122
// in scope, and if we find another method which can be used, we'll output an

compiler/rustc_hir_typeck/src/method/probe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2051,7 +2051,7 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
20512051
/// probe. This will result in a pending obligation so when more type-info is available we can
20522052
/// make the final decision.
20532053
///
2054-
/// Example (`tests/ui/method-two-trait-defer-resolution-1.rs`):
2054+
/// Example (`tests/ui/methods/method-two-trait-defer-resolution-1.rs`):
20552055
///
20562056
/// ```ignore (illustrative)
20572057
/// trait Foo { ... }

src/doc/rustc-dev-guide/src/appendix/humorust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
What's a project without a sense of humor? And frankly some of these are
44
enlightening?
55

6-
- [Weird exprs test](https://github.com/rust-lang/rust/blob/master/tests/ui/weird-exprs.rs)
6+
- [Weird exprs test](https://github.com/rust-lang/rust/blob/master/tests/ui/expr/weird-exprs.rs)
77
- [Ferris Rap](https://fitzgen.com/2018/12/13/rust-raps.html)
88
- [The Genesis of Generic Germination](https://github.com/rust-lang/rust/pull/53645#issue-210543221)
99
- [The Bastion of the Turbofish test](https://github.com/rust-lang/rust/blob/79d8a0fcefa5134db2a94739b1d18daa01fc6e9f/src/test/ui/bastion-of-the-turbofish.rs)

src/doc/rustc-dev-guide/src/tests/directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ described below:
358358
- Example: `x86_64-unknown-linux-gnu`
359359

360360
See
361-
[`tests/ui/commandline-argfile.rs`](https://github.com/rust-lang/rust/blob/master/tests/ui/argfile/commandline-argfile.rs)
361+
[`tests/ui/argfile/commandline-argfile.rs`](https://github.com/rust-lang/rust/blob/master/tests/ui/argfile/commandline-argfile.rs)
362362
for an example of a test that uses this substitution.
363363

364364
[output normalization]: ui.md#normalization

0 commit comments

Comments
 (0)