]> git.lizzy.rs Git - rust.git/commitdiff
fix test fallout
authorAriel Ben-Yehuda <ariel.byd@gmail.com>
Sat, 2 Jul 2016 11:50:36 +0000 (14:50 +0300)
committerAriel Ben-Yehuda <ariel.byd@gmail.com>
Sat, 2 Jul 2016 11:50:36 +0000 (14:50 +0300)
src/test/compile-fail/changing-crates.rs
src/test/compile-fail/svh-change-lit.rs
src/test/compile-fail/svh-change-significant-cfg.rs
src/test/compile-fail/svh-change-trait-bound.rs
src/test/compile-fail/svh-change-type-arg.rs
src/test/compile-fail/svh-change-type-ret.rs
src/test/compile-fail/svh-change-type-static.rs
src/test/compile-fail/svh-use-trait.rs
src/test/run-make/many-crates-but-no-match/Makefile

index 0b420158488229de571db0d9458c2c96f4526cec..f74855a0849b15ac8698d4fad29c5a1b75c50963 100644 (file)
@@ -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:
 
index eb92bcf065d3f582150d8683af12cb422d41a45a..1638caaa9233740e63a0a19586448ccfcc447516 100644 (file)
@@ -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:
 
index 7c9e0d3a92c98517406dc658fcbd0a0c333ff6d8..99523ca699f0ead6f703b37835dc1916505f8cd1 100644 (file)
@@ -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:
 
index 1e6a7232904a8b344260e157bd76d8df8bfd2aab..dcf4859792d280912295e2c0c7a1f6afafb3d7ad 100644 (file)
@@ -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:
 
index 73c35ee6f82ca6b89438d63f89f54ab5ec9c888d..7e51ca456b21a4607bf75e4a92fbe92802200094 100644 (file)
@@ -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:
 
index b8908e2cbd1e506d549f99cd051d2be27828c863..54ca87d84c1ec371df5a16b03efbd17ddfcb51e0 100644 (file)
@@ -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:
 
index 291e441aa5e2dc800ac24203324fa64cc03e7667..ea90faaf610888bdb402fd2b9298f873e541508b 100644 (file)
@@ -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:
 
index ed816a93c52d230ec59382fd76bf9059cba8c2a1..c0a5a0a17eb2655c8d0d9bcd87b102cb7515a6e7 100644 (file)
@@ -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:
 
index edf8e9df465dc23e825d18a1bee7bade996eb494..0da4af34ef03d9ae30dd28a9200174f47f21ee55 100644 (file)
@@ -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)