Refactor the filetests harness so that it can be run as part of `cargo test`. And begin reorganizing the test harness code in preparation for moving it out of the src directory. - Test subcommand files are now named `test_*.rs`. - cton-util subcommand files now just export their `run` and nothing else. - src/filetest/mod.rs now also just exports `run` and nothing else. - Tests are now run in release mode (with debug assertions enabled).
37 lines
867 B
Rust
37 lines
867 B
Rust
//! The `cat` sub-command.
|
|
//!
|
|
//! Read a sequence of Cretonne IL files and print them again to stdout. This has the effect of
|
|
//! normalizing formatting and removing comments.
|
|
|
|
use cton_reader::parse_functions;
|
|
use CommandResult;
|
|
use utils::read_to_string;
|
|
|
|
pub fn run(files: Vec<String>) -> CommandResult {
|
|
for (i, f) in files.into_iter().enumerate() {
|
|
if i != 0 {
|
|
println!();
|
|
}
|
|
cat_one(f)?
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
fn cat_one(filename: String) -> CommandResult {
|
|
let buffer = read_to_string(&filename).map_err(
|
|
|e| format!("{}: {}", filename, e),
|
|
)?;
|
|
let items = parse_functions(&buffer).map_err(
|
|
|e| format!("{}: {}", filename, e),
|
|
)?;
|
|
|
|
for (idx, func) in items.into_iter().enumerate() {
|
|
if idx != 0 {
|
|
println!();
|
|
}
|
|
print!("{}", func);
|
|
}
|
|
|
|
Ok(())
|
|
}
|