and finally forward.wast

This commit is contained in:
NikVolf 2017-06-06 11:50:40 +03:00
parent e7e9a0c379
commit 48e59cd9df
3 changed files with 4 additions and 3 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
target
Cargo.lock
.vscode
.vscode
**/.DS_Store

View File

@ -7,9 +7,9 @@ macro_rules! run_test {
);
}
run_test!("address", wasm_address);
run_test!("endianness", wasm_endianness);
run_test!("f32", wasm_f32);
run_test!("f64", wasm_f64);
run_test!("forward", wasm_address);
run_test!("i32", wasm_i32);
run_test!("i64", wasm_i64);

View File

@ -81,7 +81,7 @@ pub fn spec(name: &str) {
.arg("--spec")
.arg("-o")
.arg(&json_spec_path)
.arg(&format!("./testsuite/{}.wast", name))
.arg(&format!("./wabt/third_party/testsuite/{}.wast", name))
.output()
.expect("Failed to execute process");