test_serialize => test_serialize_routing_table

This commit is contained in:
Teknique
2023-05-25 15:20:03 -07:00
parent a74b0cf3b6
commit d0ac838708
5 changed files with 7 additions and 4 deletions

View File

@@ -1 +1 @@
pub mod test_serialize;
pub mod test_serialize_routing_table;

View File

@@ -35,8 +35,8 @@ pub async fn run_all_tests() {
test_envelope_receipt::test_all().await;
info!("TEST: veilid_api::tests::test_serialize_rkyv");
veilid_api::tests::test_serialize_rkyv::test_all().await;
info!("TEST: routing_table::test_serialize");
routing_table::tests::test_serialize::test_all().await;
info!("TEST: routing_table::test_serialize_routing_table");
routing_table::tests::test_serialize_routing_table::test_all().await;
info!("Finished unit tests");
}
@@ -131,6 +131,6 @@ cfg_if! {
run_test!(veilid_api, test_serialize_rkyv);
run_test!(routing_table, test_serialize);
run_test!(routing_table, test_serialize_routing_table);
}
}