blob: 92d71d89df2db82a02c5e1721a308b83687da718 [file] [log] [blame]
use crate::common::cli::ProcessedCli;
/// Architectures must support this trait
/// to be successfully tested.
pub trait SupportedArchitectureTest {
fn create(cli_options: ProcessedCli) -> Self;
fn build_c_file(&self) -> bool;
fn build_rust_file(&self) -> bool;
fn compare_outputs(&self) -> bool;
}