Skip to content

Commit

Permalink
Fix formats_source test requiring rustfmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Aug 2, 2022
1 parent 3ccf7dc commit 15f9c2d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tests/testsuite/init/formats_source/mod.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
use cargo_test_support::compare::assert_ui;
use cargo_test_support::prelude::*;
use cargo_test_support::Project;
use cargo_test_support::{process, Project};

use cargo_test_support::curr_dir;

#[cargo_test(requires_rustfmt)]
#[cargo_test]
fn formats_source() {
// This cannot use `requires_rustfmt` because rustfmt is not available in
// the rust-lang/rust environment. Additionally, if running cargo without
// rustup (but with rustup installed), this test also fails due to HOME
// preventing the proxy from choosing a toolchain.
if let Err(e) = process("rustfmt").arg("-V").exec_with_output() {
eprintln!("skipping test, rustfmt not available:\n{e:?}");
return;
}
let project = Project::from_template(curr_dir!().join("in"));
let project_root = &project.root();

Expand Down

0 comments on commit 15f9c2d

Please sign in to comment.