Skip to content

Commit f494188

Browse files
committed
---
yaml --- r: 227192 b: refs/heads/auto c: f0ea2b6 h: refs/heads/master v: v3
1 parent 9c3da3e commit f494188

13 files changed

+23
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: c8f32769b80ca33c4c93f9083202cc2078e806b1
11+
refs/heads/auto: f0ea2b66f366bd2a4f9442c92552762a355a04c4
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/src/compiletest/runtest.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,6 @@ actual:\n\
315315
// FIXME (#9639): This needs to handle non-utf8 paths
316316
let mut args = vec!("-".to_string(),
317317
"-Zno-trans".to_string(),
318-
"--crate-type=lib".to_string(),
319318
format!("--target={}", target),
320319
"-L".to_string(),
321320
config.build_base.to_str().unwrap().to_string(),

branches/auto/src/test/pretty/blank-lines.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214
fn f() -> [isize; 3] {
1315
let picard = 0;

branches/auto/src/test/pretty/block-comment-multiple-asterisks.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214
/***
1315
More than two asterisks means that it isn't a doc comment.

branches/auto/src/test/pretty/block-comment-trailing-whitespace.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214
fn f() {
1315
/*

branches/auto/src/test/pretty/block-comment-trailing-whitespace2.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214
fn f() {
1315
} /*

branches/auto/src/test/pretty/block-disambig.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// A bunch of tests for syntactic forms involving blocks that were
1214
// previously ambiguous (e.g. 'if true { } *val;' gets parsed as a
1315
// binop)

branches/auto/src/test/pretty/doc-comments.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214

1315
// some single-line non-doc comment

branches/auto/src/test/pretty/empty-impl.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
trait X { fn dummy(&self) { } }
1214
impl X for usize { }
1315

branches/auto/src/test/pretty/empty-lines.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// Issue #759
1214
// Whitespace under block opening should not expand forever
1315

branches/auto/src/test/pretty/for-comment.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214

1315
fn f(v: &[isize]) -> isize {

branches/auto/src/test/pretty/import-renames.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// pp-exact
1214

1315
use std::io::{self, Error as IoError};

branches/auto/src/test/pretty/unary-op-disambig.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// compile-flags: --crate-type=lib
12+
1113
// Preserve semicolons that disambiguate unops
1214

1315
fn f() { }

0 commit comments

Comments
 (0)