Skip to content

Commit e153a0f

Browse files
committed
move testing stderr message location
1 parent 9c49536 commit e153a0f

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,6 @@ fn install_and_test(
756756
{
757757
match t.install(&client, &dl_spec) {
758758
Ok(()) => {
759-
eprintln!("testing...");
760759
let outcome = t.test(&cfg);
761760
// we want to fail, so a successful build doesn't satisfy us
762761
let r = match outcome {

src/toolchains.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ impl Toolchain {
345345
}
346346

347347
pub(crate) fn test(&self, cfg: &Config) -> TestOutcome {
348+
eprintln!("testing...");
348349
let outcome = if cfg.args.prompt {
349350
loop {
350351
let output = self.run_test(cfg);

0 commit comments

Comments
 (0)