move to separate crate

This commit is contained in:
nora 2023-04-11 10:39:54 +02:00
parent c9bdac41d8
commit 6b24aa05ec
8 changed files with 416 additions and 287 deletions

View file

@ -0,0 +1 @@
fn main() {}

View file

@ -0,0 +1,6 @@
#[cfg(not(unix))]
compile_error!("FIXME: This does not support windows yet. I am so sorry.");
fn main() -> anyhow::Result<()> {
testsuite::full_tests()
}