Stream: git-wasmtime

Topic: wasmtime / Issue #2534 [doc] contributing-testing.md shou...


view this post on Zulip Wasmtime GitHub notifications bot (Dec 28 2020 at 04:51):

misapprehand opened Issue #2534:

cargo test --all is broken by

error[E0554]: `#![feature]` may not be used on the stable release channel
 --> crates/lightbeam/src/lib.rs:1:19
  |
1 | #![cfg_attr(test, feature(test))]
  |                   ^^^^^^^^^^^^^

error: aborting due to previous error

it should be updated as described in scrips/test-all.sh

# TODO: lightbeam currently requires rust nightly, so don't try to run the
# tests here. Name all the other packages, rather than using --all. We'll
# run the lightbeam tests below if nightly is available.
#RUST_BACKTRACE=1 cargo test --all
RUST_BACKTRACE=1 cargo test \
  --package wasmtime-cli \
  --package wasmtime \
  --package wasmtime-wasi \
  --package wasmtime-wast \
  --package wasmtime-debug \
  --package wasmtime-environ \
  --package wasmtime-runtime \
  --package wasmtime-jit \
  --package wasmtime-obj \
  --package wiggle \
  --package wiggle-generate \
  --package wiggle-test \
  --package wiggle-macro \
  --package wasi-common


Last updated: Oct 23 2024 at 20:03 UTC