Skip to content

Commit

Permalink
Merge pull request #86 from moka-rs/enable-cht-tests
Browse files Browse the repository at this point in the history
Enable cht tests
  • Loading branch information
tatsuya6502 committed Feb 5, 2022
2 parents e54d991 + 0c27f4d commit ecce22e
Show file tree
Hide file tree
Showing 6 changed files with 280 additions and 384 deletions.
8 changes: 8 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[target.armv5te-unknown-linux-musleabi]
rustflags = ["--cfg", "armv5te"]

[target.mips-unknown-linux-musl]
rustflags = ["--cfg", "mips"]

[target.mipsel-unknown-linux-musl]
rustflags = ["--cfg", "mips"]
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"aarch",
"actix",
"ahash",
"armv",
"benmanes",
"CLFU",
"clippy",
Expand Down
6 changes: 3 additions & 3 deletions src/cht.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
pub(crate) mod map;
pub(crate) mod segment;

// #[cfg(test)]
// #[macro_use]
// pub(crate) mod test_util;
#[cfg(test)]
#[macro_use]
pub(crate) mod test_util;

pub(crate) use segment::HashMap as SegmentedHashMap;
Loading

0 comments on commit ecce22e

Please sign in to comment.