Skip to content

Commit e053571

Browse files
committed
Test fixes and rebase conflicts, round 2
1 parent d3da5a7 commit e053571

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/test/debuginfo/function-prologue-stepping-regular.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@
126126
// lldb-command:continue
127127

128128
#![allow(unused_variables)]
129-
#![feature(old_io)]
130129
#![omit_gdb_pretty_printer_section]
131130

132131
fn immediate_args(a: isize, b: bool, c: f64) {
@@ -157,7 +156,7 @@ fn assignment(mut a: u64, b: u64, c: f64) {
157156
}
158157

159158
fn function_call(x: u64, y: u64, z: f64) {
160-
std::old_io::stdio::print("Hi!")
159+
println!("Hi!")
161160
}
162161

163162
fn identifier(x: u64, y: u64, z: f64) -> u64 {

src/test/run-pass/issue-15149.rs renamed to src/test/run-pass-fulldeps/issue-15149.rs

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// no-prefer-dynamic
12+
// ignore-android
1213

1314
#![feature(rustc_private)]
1415

src/test/run-pass/drop-flag-skip-sanity-check.rs

-1
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,4 @@ fn test() {
6363
// drop-glue should detect the corruption of (at least one of)
6464
// the drop-flags.
6565
}
66-
println!("We should never get here.");
6766
}

0 commit comments

Comments
 (0)