1#![deny(missing_docs)]
2include!(concat!(env!("OUT_DIR"), "/tests.rs"));
5
6#[derive(Clone)]
8pub struct Test {
9 pub module: String,
11 pub name: String,
13 pub wasm: Vec<u8>,
15}
16
17#[cfg(test)]
18impl Test {
19 pub fn compile(&self) -> anyhow::Result<()> {
21 tracing_subscriber::fmt()
22 .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
23 .without_time()
24 .compact()
25 .try_init()
26 .ok();
27
28 let Test { module, name, wasm } = self;
29 tracing::info!("Compiling {module}::{name}");
30
31 let compiler = zinkc::Compiler::default();
32 if name == "fibonacci" {
34 return Ok(());
35 }
36 compiler.compile(&wasm)?;
37 Ok(())
38 }
39}
40
41#[allow(clippy::crate_in_macro_def)]
43#[macro_export]
44macro_rules! impl_tests {
45 (
46 tests: $tests:tt,
47 modules: [$($mod:expr),+]
48 ) => {
49 $(
50 impl_tests!(@module $mod, $tests);
51 )*
52 };
53 (@module $module:tt, [$($test:ident),+]) => {
54 paste::paste! {
55 mod [< $module >] {
56 $(
57 #[test]
58 fn $test() -> anyhow::Result<()> {
59 crate::$test($module)
60 }
61 )*
62 }
63 }
64 }
65}