1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use crate::store::StoreOptions;
use anyhow::{Context, Result};
use clap::Parser;
use std::path::PathBuf;
use wasmer_wast::Wast as WastSpectest;
#[derive(Debug, Parser)]
pub struct Wast {
#[clap(name = "FILE", parse(from_os_str))]
path: PathBuf,
#[clap(flatten)]
store: StoreOptions,
#[clap(short, long)]
fail_fast: bool,
}
impl Wast {
pub fn execute(&self) -> Result<()> {
self.inner_execute()
.context(format!("failed to test the wast `{}`", self.path.display()))
}
fn inner_execute(&self) -> Result<()> {
let (store, _compiler_name) = self.store.get_store()?;
let mut wast = WastSpectest::new_with_spectest(store);
wast.fail_fast = self.fail_fast;
wast.run_file(&self.path).with_context(|| "tests failed")?;
eprintln!("Wast tests succeeded for `{}`.", self.path.display());
Ok(())
}
}