Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
test(dh): fix tenclave unit tests by ignoring the dh mod
Browse files Browse the repository at this point in the history
  • Loading branch information
longtomjr authored and PiDelport committed May 20, 2021
1 parent 176b031 commit da4c08e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rtc_tenclave/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ cfg_if::cfg_if! {
}
}

pub mod crypto;
// TODO: Refactor dh module to allow us to test with it enabled
#[cfg(not(test))]
pub mod dh;

pub mod crypto;
pub mod enclave;
pub mod kv_store;
pub mod util;

0 comments on commit da4c08e

Please sign in to comment.