Skip to content

Commit 0d18599

Browse files
committed
---
yaml --- r: 277498 b: refs/heads/try c: adda14a h: refs/heads/master
1 parent 1703ece commit 0d18599

File tree

11 files changed

+32
-11
lines changed

11 files changed

+32
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 6dbb0e86aec11050480beb76eade6fb805010ba7
33
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4-
refs/heads/try: 08207c9b52120ec8f59f67d747755bb9dd289a7b
4+
refs/heads/try: adda14a0339ff47c526d8fb6897d70fbd73a5768
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/test/codegen-units/partitioning/extern-drop-glue.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
13+
// We specify -Z incremental here because we want to test the partitioning for
14+
// incremental compilation
15+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/extern-drop-glue
1316

1417
#![allow(dead_code)]
1518
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/extern-generic.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=eager -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=eager -Zincremental=tmp/partitioning-tests/extern-generic
1315

1416
#![allow(dead_code)]
1517
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/inlining-from-extern-crate.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/inlining-from-extern-crate
1315

1416
#![crate_type="lib"]
1517

branches/try/src/test/codegen-units/partitioning/local-drop-glue.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/local-drop-glue
1315

1416
#![allow(dead_code)]
1517
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/local-generic.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=eager -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=eager -Zincremental=tmp/partitioning-tests/local-generic
1315

1416
#![allow(dead_code)]
1517
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/local-inlining.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/local-inlining
1315

1416
#![allow(dead_code)]
1517
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/local-transitive-inlining.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/local-transitive-inlining
1315

1416
#![allow(dead_code)]
1517
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/methods-are-with-self-type.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/methods-are-with-self-type
1315

1416
#![allow(dead_code)]
1517

branches/try/src/test/codegen-units/partitioning/regular-modules.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=eager -Z incremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=eager -Zincremental=tmp/partitioning-tests/regular-modules
1315

1416
#![allow(dead_code)]
1517
#![crate_type="lib"]

branches/try/src/test/codegen-units/partitioning/statics.rs

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

1111
// ignore-tidy-linelength
12-
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp
12+
// We specify -Z incremental here because we want to test the partitioning for
13+
// incremental compilation
14+
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/statics
1315

1416
#![crate_type="lib"]
1517

0 commit comments

Comments
 (0)