Skip to content

Commit

Permalink
fix test fallout
Browse files Browse the repository at this point in the history
  • Loading branch information
arielb1 committed Jul 2, 2016
1 parent e154687 commit 42b7c32
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/test/compile-fail/changing-crates.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-change-lit.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-change-significant-cfg.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-change-trait-bound.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-change-type-arg.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-change-type-ret.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-change-type-static.rs
Expand Up @@ -17,7 +17,7 @@

extern crate a;
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
//~| NOTE: perhaps this crate needs to be recompiled
//~| NOTE: perhaps that crate needs to be recompiled
//~| NOTE: crate `a` path #1:
//~| NOTE: crate `b` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/svh-use-trait.rs
Expand Up @@ -22,7 +22,7 @@

extern crate uta;
extern crate utb; //~ ERROR: found possibly newer version of crate `uta` which `utb` depends
//~| NOTE: perhaps this crate needs to be recompiled?
//~| NOTE: perhaps that crate needs to be recompiled?
//~| NOTE: crate `uta` path #1:
//~| NOTE: crate `utb` path #1:

Expand Down
2 changes: 1 addition & 1 deletion src/test/run-make/many-crates-but-no-match/Makefile
Expand Up @@ -28,7 +28,7 @@ all:
# Ensure crateC fails to compile since A1 is "missing" and A2/A3 hashes do not match
$(RUSTC) -L $(A2) -L $(A3) crateC.rs >$(LOG) 2>&1 || true
grep "error: found possibly newer version of crate \`crateA\` which \`crateB\` depends on" $(LOG)
grep "note: perhaps this crate needs to be recompiled?" $(LOG)
grep "note: perhaps that crate needs to be recompiled?" $(LOG)
grep "note: crate \`crateA\` path #1:" $(LOG)
grep "note: crate \`crateA\` path #2:" $(LOG)
grep "note: crate \`crateB\` path #1:" $(LOG)

0 comments on commit 42b7c32

Please sign in to comment.