pub struct PrintableTestCase<'a> { /* private fields */ }
Expand description
Provides a way to format a TestCase
in the .clif format.
Implementations§
Source§impl<'a> PrintableTestCase<'a>
impl<'a> PrintableTestCase<'a>
Sourcepub fn compile(isa: &'a OwnedTargetIsa, functions: &'a [Function]) -> Self
pub fn compile(isa: &'a OwnedTargetIsa, functions: &'a [Function]) -> Self
Emits a test compile
test case.
Sourcepub fn run(
isa: &'a OwnedTargetIsa,
functions: &'a [Function],
inputs: &'a [TestCaseInput],
) -> Self
pub fn run( isa: &'a OwnedTargetIsa, functions: &'a [Function], inputs: &'a [TestCaseInput], ) -> Self
Emits a test run
test case. These also include a test interpret
.
By convention the first function in functions
will be considered the main function.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PrintableTestCase<'a>
impl<'a> !RefUnwindSafe for PrintableTestCase<'a>
impl<'a> Send for PrintableTestCase<'a>
impl<'a> Sync for PrintableTestCase<'a>
impl<'a> Unpin for PrintableTestCase<'a>
impl<'a> !UnwindSafe for PrintableTestCase<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more