Skip to content

Commit

Permalink
Merge pull request #87 from oli-obk/version_bump
Browse files Browse the repository at this point in the history
Some help in debugging CI issues
  • Loading branch information
oli-obk authored Jun 26, 2023
2 parents 309cdd8 + b8eaa35 commit 0d00ffa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ui_test"
version = "0.11.4"
version = "0.11.5"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A test framework for testing rustc diagnostics output"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ fn run_test(

let output = cmd
.output()
.unwrap_or_else(|_| panic!("could not execute {cmd:?}"));
.unwrap_or_else(|err| panic!("could not execute {cmd:?}: {err:?}"));
let mode = config.mode.maybe_override(comments, revision, &mut errors);
let status_check = mode.ok(output.status);
if status_check.is_empty() && matches!(mode, Mode::Run { .. }) {
Expand Down
2 changes: 1 addition & 1 deletion tests/integrations/basic-bin/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/integrations/basic-fail-mode/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/integrations/basic-fail/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/integrations/basic/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0d00ffa

Please sign in to comment.