File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -975,12 +975,12 @@ impl TestGenerator {
975975 use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
976976
977977 fn main() {
978- println !("RUNNING ALL TESTS");
978+ eprintln !("RUNNING ALL TESTS");
979979 run_all();
980980 if FAILED.load(Ordering::SeqCst) {
981981 panic!("some tests failed");
982982 } else {
983- println !("PASSED {} tests", NTESTS.load(Ordering::SeqCst));
983+ eprintln !("PASSED {} tests", NTESTS.load(Ordering::SeqCst));
984984 }
985985 }
986986
@@ -1010,7 +1010,7 @@ impl TestGenerator {
10101010
10111011 fn same<T: Eq + Pretty>(rust: T, c: T, attr: &str) {
10121012 if rust != c {
1013- println !("bad {}: rust: {} != c {}", attr, rust.pretty(),
1013+ eprintln !("bad {}: rust: {} != c {}", attr, rust.pretty(),
10141014 c.pretty());
10151015 FAILED.store(true, Ordering::SeqCst);
10161016 } else {
You can’t perform that action at this time.
0 commit comments