9253117132
- Generate temp xml and metadata files - Correct existing tests to use cache fixtures - Fix cache xml generation
17 lines
353 B
Rust
17 lines
353 B
Rust
// suppress all the false alarms by cargo test
|
|
// https://github.com/rust-lang/rust/issues/46379
|
|
#![allow(dead_code)]
|
|
|
|
pub mod cache;
|
|
pub mod cache_xml_generator;
|
|
pub mod common_args;
|
|
pub mod fixture;
|
|
pub mod input_arg;
|
|
pub mod output_option;
|
|
pub mod process;
|
|
pub mod program;
|
|
pub mod target;
|
|
pub mod test_dir;
|
|
pub mod thin;
|
|
pub mod thin_xml_generator;
|