test work

This commit is contained in:
John Smith
2022-12-01 12:26:02 -05:00
parent 9a4ab59ed6
commit e1be2bac67
2 changed files with 8 additions and 30 deletions

View File

@@ -2,16 +2,15 @@ use super::native::*;
use crate::*;
use backtrace::Backtrace;
use std::panic;
use tracing_subscriber::{fmt, prelude::*};
use tracing_oslog::OsLogger;
use tracing_subscriber::prelude::*;
#[no_mangle]
#[allow(dead_code)]
pub extern "C" fn run_veilid_core_tests() {
std::thread::spawn(|| {
block_on(async {
veilid_core_setup_ios_tests();
run_all_tests().await;
})
block_on(async {
veilid_core_setup_ios_tests();
run_all_tests().await;
});
}