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
This is only needed for the serde test, so don't bother putting it in
the README. Downstream users won't encounter this dependency and don't
need to care about it.
Copy file name to clipboardExpand all lines: contrib/test.sh
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,11 @@ if cargo --version | grep nightly; then
13
13
NIGHTLY=true
14
14
fi
15
15
16
+
if cargo --version | grep "1\.41";then
17
+
# 1.8.x uses constfns which aren't supported in 1.41
18
+
cargo update -p half --precise 1.7.0
19
+
fi
20
+
16
21
# Test if panic in C code aborts the process (either with a real panic or with SIGILL)
17
22
cargo test -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abnormally'2>&1| tee /dev/stderr | grep "SIGILL\\|panicked at '\[libsecp256k1\]"
0 commit comments