Skip to content

Commit 671f8ee

Browse files
authored
Unrolled build for #145436
Rollup merge of #145436 - StackOverflowExcept1on:patch-1, r=alexcrichton fix(tests/rmake/wasm-unexpected-features): change features from `WASM1` to `MVP` missed this in #145275 since test calls `rustc` with `-C target-cpu mvp` try-job: `test-various`
2 parents cd7cbe8 + f36ab49 commit 671f8ee

File tree

1 file changed

+1
-1
lines changed
  • tests/run-make/wasm-unexpected-features

1 file changed

+1
-1
lines changed

tests/run-make/wasm-unexpected-features/rmake.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ fn verify_features(path: &Path) {
2121
eprintln!("verify {path:?}");
2222
let file = rfs::read(&path);
2323

24-
let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::WASM1);
24+
let mut validator = wasmparser::Validator::new_with_features(wasmparser::WasmFeatures::MVP);
2525
validator.validate_all(&file).unwrap();
2626
}

0 commit comments

Comments
 (0)