This website requires JavaScript.
Explore
Help
Sign In
xeos
/
wasmi
Watch
1
Star
0
Fork
You've already forked wasmi
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
b6187890b0
wasmi
/
tests
/
spec_shim.rs
7 lines
80 B
Rust
Raw
Normal View
History
Unescape
Escape
Move spec testsuite into tests. (#56) Move all spec testsuite into `/tests` directory. So it means that several changes will happen: - Compilation will share common dependencies in target directory. This should make CI builds faster. This also should reduce space requirements. - Common Cargo.lock file - `cargo test` will include spec tests. - `cargo check --tests` will also include spec tests.
2018-02-14 15:03:39 +00:00
//! Official spec testsuite.
Add spec tests.
2018-01-22 14:55:43 +00:00
Use wabt spec module (#48) Use wabt-rs script parser to parse official testsuite.
2018-02-14 10:40:31 +00:00
extern
crate
wabt
;
rustfmt (#151)
2018-12-11 11:54:06 +00:00
extern
crate
wasmi
;
Add spec tests.
2018-01-22 14:55:43 +00:00
Move spec testsuite into tests. (#56) Move all spec testsuite into `/tests` directory. So it means that several changes will happen: - Compilation will share common dependencies in target directory. This should make CI builds faster. This also should reduce space requirements. - Common Cargo.lock file - `cargo test` will include spec tests. - `cargo check --tests` will also include spec tests.
2018-02-14 15:03:39 +00:00
mod
spec
;