File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ tempfile = "3"
53
53
rustc_private = true
54
54
55
55
[[test ]]
56
- name = " compiletest "
56
+ name = " ui "
57
57
harness = false
58
58
59
59
[features ]
Original file line number Diff line number Diff line change @@ -510,11 +510,11 @@ impl Command {
510
510
let miri_flags = flagsplit ( & miri_flags) ;
511
511
let toolchain = & e. toolchain ;
512
512
let extra_flags = & e. cargo_extra_flags ;
513
- let edition_flags = ( !have_edition) . then_some ( "--edition=2021" ) ; // keep in sync with `compiletest .rs`.`
513
+ let edition_flags = ( !have_edition) . then_some ( "--edition=2021" ) ; // keep in sync with `tests/ui .rs`.`
514
514
if dep {
515
515
cmd ! (
516
516
e. sh,
517
- "cargo +{toolchain} --quiet test --test compiletest {extra_flags...} --manifest-path {miri_manifest} -- --miri-run-dep-mode {miri_flags...} {edition_flags...} {flags...}"
517
+ "cargo +{toolchain} --quiet test {extra_flags...} --manifest-path {miri_manifest} --test ui -- --miri-run-dep-mode {miri_flags...} {edition_flags...} {flags...}"
518
518
) . quiet ( ) . run ( ) ?;
519
519
} else {
520
520
cmd ! (
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ fn main() -> Result<()> {
241
241
ui_test:: color_eyre:: install ( ) ?;
242
242
243
243
let target = get_target ( ) ;
244
- let tmpdir = tempfile:: Builder :: new ( ) . prefix ( "miri-compiletest -" ) . tempdir ( ) ?;
244
+ let tmpdir = tempfile:: Builder :: new ( ) . prefix ( "miri-uitest -" ) . tempdir ( ) ?;
245
245
246
246
let mut args = std:: env:: args_os ( ) ;
247
247
You can’t perform that action at this time.
0 commit comments