Merge rust-bitcoin/rust-secp256k1#692: CI: Revert cc pin in ASAN job

7b6a13b004 CI: Revert cc pin in ASAN job (Tobin C. Harding)

Pull request description:

  Revert commit: 92778efe92

  We can't use git to revert it because the code has now moved from `test.sh` to `_test.sh`.

  I don't remember the problem but lets just use CI to see if its fixed.

ACKs for top commit:
  sanket1729:
    utACK 7b6a13b004
  apoelstra:
    ACK 7b6a13b004

Tree-SHA512: d804c73152b3d8b14e8f13e64066c33e2dfbdef8b184d55672638df6b468a6f636e632c5e1a0b09e617534aaf466b1c719c6df16952aaf8a51cb2659bed1d0ef
This commit is contained in:
Andrew Poelstra 2024-03-27 18:40:17 +00:00
commit 1674406b1b
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 0 additions and 5 deletions

View File

@ -101,11 +101,6 @@ if [ "$DO_ASAN" = true ]; then
RUSTFLAGS='-Zsanitizer=memory -Zsanitizer-memory-track-origins -Cforce-frame-pointers=yes -Cllvm-args=-msan-eager-checks=0' \
cargo test --lib --all --features="$FEATURES" -Zbuild-std --target x86_64-unknown-linux-gnu
pushd "$REPO_DIR/no_std_test" > /dev/null || exit 1
# See https://github.com/rust-bitcoin/rust-secp256k1/pull/641#issuecomment-1671598914
cargo update -p cc --precise 1.0.79
popd > /dev/null || exit 1
cargo run --release --manifest-path=./no_std_test/Cargo.toml | grep -q "Verified Successfully"
cargo run --release --features=alloc --manifest-path=./no_std_test/Cargo.toml | grep -q "Verified alloc Successfully"
fi