use anyhow::{Context as _, Result};
use clap::Parser;
use std::path::PathBuf;
use wasmtime::{Engine, Store};
use wasmtime_cli_flags::CommonOptions;
use wasmtime_wast::WastContext;
#[derive(Parser, PartialEq)]
pub struct WastCommand {
#[command(flatten)]
common: CommonOptions,
#[arg(required = true, value_name = "SCRIPT_FILE")]
scripts: Vec<PathBuf>,
}
impl WastCommand {
pub fn execute(mut self) -> Result<()> {
self.common.init_logging()?;
let config = self.common.config(None)?;
let store = Store::new(&Engine::new(&config)?, ());
let mut wast_context = WastContext::new(store);
wast_context
.register_spectest(true)
.expect("error instantiating \"spectest\"");
for script in self.scripts.iter() {
wast_context
.run_file(script)
.with_context(|| format!("failed to run script file '{}'", script.display()))?
}
Ok(())
}
}