convert programs into tests

This commit is contained in:
2026-06-12 22:24:35 -04:00
parent 715a50b1fa
commit 571ff70fa1
13 changed files with 129 additions and 225 deletions
+1 -1
View File
@@ -1,6 +1,7 @@
mod compile;
mod encode;
mod reg;
#[cfg(test)]
mod test;
mod types;
mod util;
@@ -14,7 +15,6 @@ use crate::{
pub use compile::*;
pub use encode::*;
pub use reg::*;
pub use test::bin::run as bin_test;
pub use types::*;
use util::*;