You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`cargo +nightly` output of panic recently changed breaking our grep
statement by adding the code line and a newline.
Grep for the exact second line of the error message.
Copy file name to clipboardExpand all lines: contrib/test.sh
+3-1
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,9 @@ if cargo --version | grep "1\.48"; then
20
20
fi
21
21
22
22
# Test if panic in C code aborts the process (either with a real panic or with SIGILL)
23
-
cargo test -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abnormally'2>&1| tee /dev/stderr | grep "SIGILL\\|panicked at '\[libsecp256k1\]"
23
+
cargo test -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abnormally'2>&1 \
0 commit comments