Skip to content

Commit 11024b2

Browse files
committed
Bless incremental tests.
1 parent a1a3557 commit 11024b2

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

src/test/incremental/hashes/extern_mods.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ extern "rust-call" {
143143
// Make function public --------------------------------------------------------
144144
#[cfg(any(cfail1,cfail4))]
145145
extern "C" {
146-
fn make_function_public(c: i32);
146+
fn make_function_public(c: i32);
147147
}
148148

149149
#[cfg(not(any(cfail1,cfail4)))]
150-
#[rustc_clean(cfg = "cfail2", except = "hir_owner")]
150+
#[rustc_clean(cfg = "cfail2")]
151151
#[rustc_clean(cfg = "cfail3")]
152-
#[rustc_clean(cfg = "cfail5", except = "hir_owner")]
152+
#[rustc_clean(cfg = "cfail5")]
153153
#[rustc_clean(cfg = "cfail6")]
154154
extern "C" {
155155
pub fn make_function_public(c: i32);

src/test/incremental/hashes/inherent_impls.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -116,20 +116,24 @@ impl Foo {
116116
// Change Method Privacy -------------------------------------------------------
117117
#[cfg(any(cfail1,cfail4))]
118118
impl Foo {
119+
//------------------------------------------------------------------------------
120+
//--------------------------
121+
//------------------------------------------------------------------------------
122+
//--------------------------
119123
pub fn method_privacy() { }
120124
}
121125

122126
#[cfg(not(any(cfail1,cfail4)))]
123-
#[rustc_clean(cfg="cfail2", except="hir_owner")]
127+
#[rustc_clean(cfg="cfail2")]
124128
#[rustc_clean(cfg="cfail3")]
125-
#[rustc_clean(cfg="cfail5", except="hir_owner")]
129+
#[rustc_clean(cfg="cfail5")]
126130
#[rustc_clean(cfg="cfail6")]
127131
impl Foo {
128132
#[rustc_clean(cfg="cfail2", except="associated_item,hir_owner,hir_owner_nodes")]
129133
#[rustc_clean(cfg="cfail3")]
130-
#[rustc_clean(cfg="cfail5", except="associated_item,hir_owner,hir_owner_nodes,optimized_mir")]
134+
#[rustc_clean(cfg="cfail5", except="associated_item,hir_owner,hir_owner_nodes")]
131135
#[rustc_clean(cfg="cfail6")]
132-
fn method_privacy() { }
136+
fn method_privacy() { }
133137
}
134138

135139
// Change Method Selfness -----------------------------------------------------------

0 commit comments

Comments
 (0)