()
| 25 | p.set_type_prelude(get_stdlib_type_prelude()); |
| 26 | p.compile_modules(&modules) |
| 27 | .unwrap_or_else(|e| panic!("kernel stdlib modules failed to compile:\n{e}")); |
| 28 | } |
| 29 | |
| 30 | #[test] |
| 31 | fn kernel_stdlib_full_bundle_compiles() { |
| 32 | CompilationPipeline::compile_stdlib_objects(TargetMode::Kernel) |
| 33 | .unwrap_or_else(|e| panic!("kernel stdlib failed to compile:\n{e}")); |
| 34 | } |
| 35 | |
| 36 | // --- Individual kernel HLL modules --- |
| 37 | |
| 38 | #[test] |
| 39 | fn kernel_entry_compiles() { |
nothing calls this directly
no test coverage detected