Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix borrow error when scheduling future inside an executor's callback #165

Merged
merged 1 commit into from
Dec 21, 2023

fix borrow error when scheduling future inside an executor's callback

ba35762
Select commit
Loading
Failed to load commit list.
Merged

fix borrow error when scheduling future inside an executor's callback #165

fix borrow error when scheduling future inside an executor's callback
ba35762
Select commit
Loading
Failed to load commit list.
Cirrus CI / FreeBSD 13.2 failed Dec 21, 2023 in 32s

Task Summary

Instruction test failed in 00:01

Details

⚠️ Not enough compute credits to prioritize tasks!

✅ 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