pepyakin / binaryen-rs

Binaryen bindings for Rust.
Apache License 2.0
74 stars 17 forks source link

Fix signature of translateToFuzz in binaryen-sys tests #21

Closed axic closed 5 years ago

axic commented 5 years ago

Fixes #20.

Seems like the cargo test in Travis is not running in sub-crate binaryen-sys.

pepyakin commented 5 years ago

Ah yes, indeed. --all doesn't test everything because binaryen-sys is not in a workspace. We can fix that by adding cargo test --manifest-path=binaryen-sys/Cargo.toml to .travis.yml

axic commented 5 years ago

Added the lines to travis.