()
| 9 | } |
| 10 | |
| 11 | fn compile_fixture(subdir: &str, name: &str) -> String { |
| 12 | let path = suite_root().join(subdir).join(format!("{name}.hll")); |
| 13 | let source = fs::read_to_string(&path) |
| 14 | .unwrap_or_else(|e| panic!("failed to read fixture {path:?}: {e}")); |
| 15 | let mut pipeline = CompilationPipeline::new(); |
| 16 | pipeline.set_write_artifacts(false); |