Skip to content

Commit

Permalink
fix: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dnbln committed Feb 3, 2024
1 parent ae64941 commit dfc5ee4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
with:
toolchain: nightly
override: true
components: rustfmt, clippy
components: rustfmt, clippy, llvm-tools-preview

- name: Install binutils
run: cargo install cargo-binutils

- name: Move config file
run: mv .cargo/config.toml .cargo/config2.toml
Expand Down
1 change: 1 addition & 0 deletions cargo-difftests/tests/test_support/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ fn report_output_fail(cmd_name: &str, output: &std::process::Output) -> R {

impl CargoDifftestsTestAnalysis {
fn output_check_and_stdout_check(mut self, expected: &[u8]) -> R<bool> {
println!("running {:?}", self.cmd);
let output = self.cmd.output()?;
report_output_fail("cargo-difftests", &output)?;
Ok(output.stdout == expected)
Expand Down

0 comments on commit dfc5ee4

Please sign in to comment.