38 lines
976 B
Rust
38 lines
976 B
Rust
//! The `cat` subtest.
|
|
|
|
use cretonne_codegen::ir::Function;
|
|
use cretonne_reader::TestCommand;
|
|
use std::borrow::Cow;
|
|
use subtest::{self, Context, Result as STResult, SubTest};
|
|
|
|
/// Object implementing the `test cat` sub-test.
|
|
///
|
|
/// This command is used for testing the parser and function printer. It simply parses a function
|
|
/// and prints it out again.
|
|
///
|
|
/// The result is verified by filecheck.
|
|
struct TestCat;
|
|
|
|
pub fn subtest(parsed: &TestCommand) -> STResult<Box<SubTest>> {
|
|
assert_eq!(parsed.command, "cat");
|
|
if !parsed.options.is_empty() {
|
|
Err(format!("No options allowed on {}", parsed))
|
|
} else {
|
|
Ok(Box::new(TestCat))
|
|
}
|
|
}
|
|
|
|
impl SubTest for TestCat {
|
|
fn name(&self) -> &'static str {
|
|
"cat"
|
|
}
|
|
|
|
fn needs_verifier(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
fn run(&self, func: Cow<Function>, context: &Context) -> STResult<()> {
|
|
subtest::run_filecheck(&func.display(context.isa).to_string(), context)
|
|
}
|
|
}
|