Skip to content

Commit f7849c7

Browse files
committed
Allow various lints to silence compiler warnings.
1 parent 5ed5a0d commit f7849c7

File tree

75 files changed

+82
-2
lines changed

Some content is hidden

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

75 files changed

+82
-2
lines changed

src/test/ui/run-pass/alias-uninit-value.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12-
12+
#![allow(non_camel_case_types)]
1313

1414
// Regression test for issue #374
1515

src/test/ui/run-pass/alignment-gep-tup-like-1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314
#![feature(box_syntax)]
1415

src/test/ui/run-pass/alloca-from-derived-tydesc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314

1415
// pretty-expanded FIXME #23616

src/test/ui/run-pass/atomic-access-bool.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(stable_features)]
1213

1314
#![feature(atomic_access)]
1415
use std::sync::atomic::{AtomicBool, ATOMIC_BOOL_INIT};

src/test/ui/run-pass/atomic-compare_exchange.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12-
12+
#![allow(stable_features)]
1313
#![feature(extended_compare_and_swap)]
1414
use std::sync::atomic::{AtomicIsize, ATOMIC_ISIZE_INIT};
1515
use std::sync::atomic::Ordering::*;

src/test/ui/run-pass/atomic-print.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(deprecated)]
1213

1314
// ignore-cloudabi no process support
1415
// ignore-emscripten no threads support

src/test/ui/run-pass/attr-mix-new.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(unknown_lints)]
1213
// pretty-expanded FIXME #23616
1314

1415
#![allow(unused_attribute)]

src/test/ui/run-pass/binops.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(non_camel_case_types)]
1213

1314
// Binop corner cases
1415

src/test/ui/run-pass/command-before-exec.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(stable_features)]
1213

1314
// ignore-windows - this is a unix-specific test
1415
// ignore-cloudabi no processes

src/test/ui/run-pass/command-exec.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// run-pass
12+
#![allow(stable_features)]
1213

1314
// ignore-windows - this is a unix-specific test
1415
// ignore-pretty issue #37199

0 commit comments

Comments
 (0)