Skip to content

Commit 3079bd9

Browse files
committed
Run rustfmt on tests/run-make/.
With the exception of `tests/run-make/translation/test.rs`, which has a syntax error. The expected output in `rustdoc-error-lines/rmake.rs`'s required slight tweaking. The two `reproducible-build.rs` files need `// ignore-tidy-linelength` because rustfmt produces lines longer than 100 chars, which tidy doesn't like, yuk.
1 parent 70bc0c5 commit 3079bd9

File tree

136 files changed

+423
-372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+423
-372
lines changed

rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ignore = [
2020
"/tests/incremental/",
2121
"/tests/mir-opt/",
2222
"/tests/pretty/",
23-
"/tests/run-make/",
23+
"/tests/run-make/translation/test.rs", # Contains syntax errors.
2424
"/tests/run-make-fulldeps/",
2525
"/tests/run-pass-valgrind/",
2626
"/tests/rustdoc/",

tests/run-make/a-b-a-linker-guard/a.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![crate_type = "dylib"]
33

44
#[cfg(x)]
5-
pub fn foo(x: u32) { }
5+
pub fn foo(x: u32) {}
66

77
#[cfg(y)]
8-
pub fn foo(x: i32) { }
8+
pub fn foo(x: i32) {}

tests/run-make/allow-non-lint-warnings-cmdline/foo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#[derive(Copy, Clone)]
33
pub struct Foo;
44

5-
pub fn main() { }
5+
pub fn main() {}

tests/run-make/allow-warnings-cmdline-stability/foo.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
extern crate bar;
44

5-
pub fn main() { bar::baz() }
5+
pub fn main() {
6+
bar::baz()
7+
}

tests/run-make/atomic-lock-free/atomic_lock_free.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![feature(no_core, intrinsics, lang_items)]
2-
#![crate_type="rlib"]
2+
#![crate_type = "rlib"]
33
#![no_core]
44

55
extern "rust-intrinsic" {

tests/run-make/bare-outfile/foo.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
fn main() {
2-
}
1+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#![crate_type="lib"]
1+
#![crate_type = "lib"]
22
pub struct Foo(());
33

44
impl Foo {
5-
pub fn new() -> Foo {
6-
Foo(())
7-
}
5+
pub fn new() -> Foo {
6+
Foo(())
7+
}
88
}
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#![crate_type="lib"]
1+
#![crate_type = "lib"]
22
extern crate foo;
33
use foo::Foo;
44

55
pub fn crash() -> Box<Foo> {
6-
Box::new(Foo::new())
6+
Box::new(Foo::new())
77
}

tests/run-make/c-link-to-rust-va-list-fn/checkrust.rs

+8-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#![crate_type = "staticlib"]
22
#![feature(c_variadic)]
33

4-
use std::ffi::{c_char, c_double, c_int, c_long, c_longlong};
54
use std::ffi::VaList;
6-
use std::ffi::{CString, CStr};
5+
use std::ffi::{c_char, c_double, c_int, c_long, c_longlong};
6+
use std::ffi::{CStr, CString};
77

88
macro_rules! continue_if {
99
($cond:expr) => {
1010
if !($cond) {
1111
return 0xff;
1212
}
13-
}
13+
};
1414
}
1515

1616
unsafe fn compare_c_str(ptr: *const c_char, val: &str) -> bool {
@@ -59,13 +59,11 @@ pub unsafe extern "C" fn check_list_copy_0(mut ap: VaList) -> usize {
5959
continue_if!(ap.arg::<c_int>() == 16);
6060
continue_if!(ap.arg::<c_char>() == 'A' as c_char);
6161
continue_if!(compare_c_str(ap.arg::<*const c_char>(), "Skip Me!"));
62-
ap.with_copy(|mut ap| {
63-
if compare_c_str(ap.arg::<*const c_char>(), "Correct") {
64-
0
65-
} else {
66-
0xff
67-
}
68-
})
62+
ap.with_copy(
63+
|mut ap| {
64+
if compare_c_str(ap.arg::<*const c_char>(), "Correct") { 0 } else { 0xff }
65+
},
66+
)
6967
}
7068

7169
#[no_mangle]
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#![crate_type = "lib"]
2-
extern crate b;
32
extern crate a;
3+
extern crate b;

tests/run-make/crate-data-smoke/rmake.rs

+6-27
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,20 @@ use std::process::Output;
33
use run_make_support::{bin_name, rust_lib_name, rustc};
44

55
fn compare_stdout<S: AsRef<str>>(output: Output, expected: S) {
6-
assert_eq!(
7-
String::from_utf8(output.stdout).unwrap().trim(),
8-
expected.as_ref()
9-
);
6+
assert_eq!(String::from_utf8(output.stdout).unwrap().trim(), expected.as_ref());
107
}
118

129
fn main() {
1310
compare_stdout(rustc().print("crate-name").input("crate.rs").run(), "foo");
11+
compare_stdout(rustc().print("file-names").input("crate.rs").run(), bin_name("foo"));
1412
compare_stdout(
15-
rustc().print("file-names").input("crate.rs").run(),
16-
bin_name("foo"),
17-
);
18-
compare_stdout(
19-
rustc()
20-
.print("file-names")
21-
.crate_type("lib")
22-
.arg("--test")
23-
.input("crate.rs")
24-
.run(),
13+
rustc().print("file-names").crate_type("lib").arg("--test").input("crate.rs").run(),
2514
bin_name("foo"),
2615
);
2716
compare_stdout(
28-
rustc()
29-
.print("file-names")
30-
.arg("--test")
31-
.input("lib.rs")
32-
.run(),
17+
rustc().print("file-names").arg("--test").input("lib.rs").run(),
3318
bin_name("mylib"),
3419
);
35-
compare_stdout(
36-
rustc().print("file-names").input("lib.rs").run(),
37-
rust_lib_name("mylib"),
38-
);
39-
compare_stdout(
40-
rustc().print("file-names").input("rlib.rs").run(),
41-
rust_lib_name("mylib"),
42-
);
20+
compare_stdout(rustc().print("file-names").input("lib.rs").run(), rust_lib_name("mylib"));
21+
compare_stdout(rustc().print("file-names").input("rlib.rs").run(), rust_lib_name("mylib"));
4322
}

tests/run-make/cross-lang-lto-clang/rustlib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![crate_type="staticlib"]
1+
#![crate_type = "staticlib"]
22

33
#[no_mangle]
44
pub extern "C" fn rust_always_inlined() -> u32 {

tests/run-make/cross-lang-lto-pgo-smoketest/rustlib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![crate_type="staticlib"]
1+
#![crate_type = "staticlib"]
22

33
#[no_mangle]
44
pub extern "C" fn rust_always_inlined() -> u32 {

tests/run-make/cross-lang-lto-upstream-rlibs/staticlib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![crate_type="staticlib"]
1+
#![crate_type = "staticlib"]
22

33
extern crate upstream;
44

tests/run-make/debug-assertions/debug.rs

+17-3
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,33 @@ fn main() {
1515
fn debug_assert_eq() {
1616
let mut hit1 = false;
1717
let mut hit2 = false;
18-
debug_assert_eq!({ hit1 = true; 1 }, { hit2 = true; 2 });
18+
debug_assert_eq!(
19+
{
20+
hit1 = true;
21+
1
22+
},
23+
{
24+
hit2 = true;
25+
2
26+
}
27+
);
1928
assert!(!hit1);
2029
assert!(!hit2);
2130
}
2231

2332
fn debug_assert() {
2433
let mut hit = false;
25-
debug_assert!({ hit = true; false });
34+
debug_assert!({
35+
hit = true;
36+
false
37+
});
2638
assert!(!hit);
2739
}
2840

2941
fn overflow() {
30-
fn add(a: u8, b: u8) -> u8 { a + b }
42+
fn add(a: u8, b: u8) -> u8 {
43+
a + b
44+
}
3145

3246
add(200u8, 200u8);
3347
}

tests/run-make/dep-info-spaces/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[path="foo foo.rs"]
1+
#[path = "foo foo.rs"]
22
pub mod foo;
33

44
pub mod bar;

tests/run-make/dep-info/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#![crate_name = "foo"]
22

3-
pub mod foo;
43
pub mod bar;
4+
pub mod foo;
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
extern crate foo;
21
extern crate bar;
2+
extern crate foo;
33

44
pub struct Bar;
55
impl ::std::ops::Deref for Bar {
66
type Target = bar::S;
7-
fn deref(&self) -> &Self::Target { unimplemented!() }
7+
fn deref(&self) -> &Self::Target {
8+
unimplemented!()
9+
}
810
}

tests/run-make/deref-impl-rustdoc-ice/foo.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
extern crate proc_macro;
44

55
#[proc_macro_derive(A)]
6-
pub fn derive(ts: proc_macro::TokenStream) -> proc_macro::TokenStream { ts }
6+
pub fn derive(ts: proc_macro::TokenStream) -> proc_macro::TokenStream {
7+
ts
8+
}
79

810
#[derive(Debug)]
911
struct S;

tests/run-make/dylib-chain/m2.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#![crate_type = "dylib"]
22
extern crate m1;
33

4-
pub fn m2() { m1::m1() }
4+
pub fn m2() {
5+
m1::m1()
6+
}

tests/run-make/dylib-chain/m3.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#![crate_type = "dylib"]
22
extern crate m2;
33

4-
pub fn m3() { m2::m2() }
4+
pub fn m3() {
5+
m2::m2()
6+
}

tests/run-make/dylib-chain/m4.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
extern crate m3;
22

3-
fn main() { m3::m3() }
3+
fn main() {
4+
m3::m3()
5+
}

tests/run-make/emit/test-26235.rs

+17-8
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,22 @@ fn main() {
66
type Key = u32;
77
const NUM_THREADS: usize = 2;
88

9-
#[derive(Clone,Copy)]
9+
#[derive(Clone, Copy)]
1010
struct Stats<S> {
1111
upsert: S,
1212
delete: S,
1313
insert: S,
14-
update: S
14+
update: S,
1515
};
1616

17-
impl<S> Stats<S> where S: Copy {
18-
fn dot<B, F, T>(self, s: Stats<T>, f: F) -> Stats<B> where F: Fn(S, T) -> B {
17+
impl<S> Stats<S>
18+
where
19+
S: Copy,
20+
{
21+
fn dot<B, F, T>(self, s: Stats<T>, f: F) -> Stats<B>
22+
where
23+
F: Fn(S, T) -> B,
24+
{
1925
let Stats { upsert: u1, delete: d1, insert: i1, update: p1 } = self;
2026
let Stats { upsert: u2, delete: d2, insert: i2, update: p2 } = s;
2127
Stats { upsert: f(u1, u2), delete: f(d1, d2), insert: f(i1, i2), update: f(p1, p2) }
@@ -38,9 +44,12 @@ fn main() {
3844
make_threads();
3945

4046
{
41-
let Stats { ref upsert, ref delete, ref insert, ref update } = stats.iter().fold(
42-
Stats::new(0), |res, &s| res.dot(s, |x: Key, y: Key| x.wrapping_add(y)));
43-
println!("upserts: {}, deletes: {}, inserts: {}, updates: {}",
44-
upsert, delete, insert, update);
47+
let Stats { ref upsert, ref delete, ref insert, ref update } = stats
48+
.iter()
49+
.fold(Stats::new(0), |res, &s| res.dot(s, |x: Key, y: Key| x.wrapping_add(y)));
50+
println!(
51+
"upserts: {}, deletes: {}, inserts: {}, updates: {}",
52+
upsert, delete, insert, update
53+
);
4554
}
4655
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#[macro_use]
22
extern crate foo;
33

4-
fn main() {
5-
}
4+
fn main() {}

tests/run-make/extern-flag-disambiguates/a.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
33

44
static FOO: usize = 3;
55

6-
pub fn token() -> &'static usize { &FOO }
6+
pub fn token() -> &'static usize {
7+
&FOO
8+
}

tests/run-make/extern-flag-disambiguates/b.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@ extern crate a;
55

66
static FOO: usize = 3;
77

8-
pub fn token() -> &'static usize { &FOO }
9-
pub fn a_token() -> &'static usize { a::token() }
8+
pub fn token() -> &'static usize {
9+
&FOO
10+
}
11+
pub fn a_token() -> &'static usize {
12+
a::token()
13+
}

tests/run-make/extern-flag-disambiguates/c.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@ extern crate a;
55

66
static FOO: usize = 3;
77

8-
pub fn token() -> &'static usize { &FOO }
9-
pub fn a_token() -> &'static usize { a::token() }
8+
pub fn token() -> &'static usize {
9+
&FOO
10+
}
11+
pub fn a_token() -> &'static usize {
12+
a::token()
13+
}

tests/run-make/extern-flag-disambiguates/d.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
#[cfg(before)] extern crate a;
1+
#[cfg(before)]
2+
extern crate a;
3+
#[cfg(after)]
4+
extern crate a;
25
extern crate b;
36
extern crate c;
4-
#[cfg(after)] extern crate a;
57

6-
fn t(a: &'static usize) -> usize { a as *const _ as usize }
8+
fn t(a: &'static usize) -> usize {
9+
a as *const _ as usize
10+
}
711

812
fn main() {
913
assert_eq!(t(a::token()), t(b::a_token()));

tests/run-make/extern-fn-explicit-align/test.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Issue #80127: Passing structs via FFI should work with explicit alignment.
22

3-
use std::ffi::{CStr, c_char};
3+
use std::ffi::{c_char, CStr};
44
use std::ptr::null_mut;
55

66
#[repr(C)]
@@ -18,7 +18,7 @@ pub struct TwoU64s {
1818

1919
#[repr(C)]
2020
pub struct WrappedU64s {
21-
pub a: TwoU64s
21+
pub a: TwoU64s,
2222
}
2323

2424
#[repr(C)]

0 commit comments

Comments
 (0)