3cea79a122
- allow compiling/running html tests without compiling main crate tests (useful when e.g. making type changes to events but html unaffected) - avoid need for future flags in main crate
6 lines
158 B
Rust
6 lines
158 B
Rust
fn main() {
|
|
let status = std::process::Command::new("make")
|
|
.status()
|
|
.expect("failed to execute make");
|
|
assert!(status.success());
|
|
}
|