16190f0f9a
New modules: fixture, process, program, target, and thin
16 lines
338 B
Rust
16 lines
338 B
Rust
// suppress all the false alarms by cargo test
|
|
// https://github.com/rust-lang/rust/issues/46379
|
|
#![allow(dead_code)]
|
|
|
|
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;
|