We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c49536 commit e153a0fCopy full SHA for e153a0f
src/main.rs
@@ -756,7 +756,6 @@ fn install_and_test(
756
{
757
match t.install(&client, &dl_spec) {
758
Ok(()) => {
759
- eprintln!("testing...");
760
let outcome = t.test(&cfg);
761
// we want to fail, so a successful build doesn't satisfy us
762
let r = match outcome {
src/toolchains.rs
@@ -345,6 +345,7 @@ impl Toolchain {
345
}
346
347
pub(crate) fn test(&self, cfg: &Config) -> TestOutcome {
348
+ eprintln!("testing...");
349
let outcome = if cfg.args.prompt {
350
loop {
351
let output = self.run_test(cfg);
0 commit comments