fix borrow error when scheduling future inside an executor's callback #165
Cirrus CI / FreeBSD 13.2
failed
Dec 21, 2023 in 32s
Task Summary
Instruction test failed in 00:01
Details
✅ 00:00 clone
✅ 00:29 setup
❌ 00:01 test
. $HOME/.cargo/env
#!/bin/sh
# rustup shell setup
# affix colons on either side of $PATH to simplify matching
case ":${PATH}:" in
*:"$HOME/.cargo/bin":*)
;;
*)
# Prepending path in case a system-installed rustc needs to be overridden
export PATH="$HOME/.cargo/bin:$PATH"
;;
esac
env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
error: failed to run `rustc` to learn about target-specific information
Caused by:
process didn't exit successfully: `/.rustup/toolchains/nightly-x86_64-unknown-freebsd/bin/rustc - --crate-name ___ --print=file-names -Zinstrument-coverage --crate-type bin --crate-type rlib --crate-type dylib --crate-type cdylib --crate-type staticlib --crate-type proc-macro --print=sysroot --print=split-debuginfo --print=crate-name --print=cfg` (exit status: 1)
--- stderr
error: unknown unstable option: `instrument-coverage`
Exit status: 101
Loading