Skip to content

Commit

Permalink
show status
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexendoo committed Feb 28, 2024
1 parent 6cfb0a6 commit ddf9693
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/clippy_bors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ jobs:
sudo find "${SYSROOT}/lib" -maxdepth 1 -name '*dylib' -exec ln -s {} /usr/local/lib \;
- name: Test 1
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 2
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 3
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 4
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 5
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 6
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 7
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 8
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
- name: Test 9
run: cargo test -F internal,deny-warnings --test sigabrt
run: cargo test --test sigabrt
1 change: 1 addition & 0 deletions tests/sigabrt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ fn check() {
let out = c.output().unwrap();
if out.status.code().is_none() {
println!("{c:?}");
println!("status: {}", out.status);
println!("stdout:\n{}", std::str::from_utf8(&out.stdout).unwrap());
println!("stderr:\n{}", std::str::from_utf8(&out.stderr).unwrap());

Expand Down

0 comments on commit ddf9693

Please sign in to comment.