Skip to content

Commit 6fd4d0b

Browse files
messenseThomas Bracht Laumann Jespersen
authored and
Thomas Bracht Laumann Jespersen
committed
Use my forked version of rustc-test from crates.io
1 parent daa795e commit 6fd4d0b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ tempfile = { version = "3.0", optional = true }
2323
serde = "1.0"
2424
serde_json = "1.0"
2525
serde_derive = "1.0"
26-
rustc-test = { git = "https://github.com/messense/rustc-test.git", branch = "sync-rustc", optional = true }
26+
tester = { version = "0.4", optional = true }
2727

2828
[target."cfg(unix)".dependencies]
2929
libc = "0.2"
@@ -35,4 +35,4 @@ winapi = { version = "0.3", features = ["winerror"] }
3535
[features]
3636
tmp = ["tempfile"]
3737
norustc = []
38-
stable = ["norustc", "rustc-test"]
38+
stable = ["norustc", "tester"]

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ extern crate rustc;
2121

2222
#[cfg(unix)]
2323
extern crate libc;
24-
#[cfg(not(feature = "stable"))]
2524
extern crate test;
26-
#[cfg(feature = "stable")]
27-
extern crate rustc_test as test;
2825

2926
#[cfg(feature = "tmp")] extern crate tempfile;
3027

0 commit comments

Comments
 (0)