diff --git a/.gitignore b/.gitignore index 110d010..8c6e27f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ target Cargo.lock -.vscode \ No newline at end of file +.vscode +**/.DS_Store \ No newline at end of file diff --git a/spec/src/fixtures.rs b/spec/src/fixtures.rs index f5035ce..659bb4a 100644 --- a/spec/src/fixtures.rs +++ b/spec/src/fixtures.rs @@ -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); diff --git a/spec/src/run.rs b/spec/src/run.rs index 03df6cf..fcfff94 100644 --- a/spec/src/run.rs +++ b/spec/src/run.rs @@ -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");