Home
last modified time | relevance | path

Searched refs:SubTest (Results 1 – 16 of 16) sorted by relevance

/wasmtime-44.0.1/cranelift/filetests/src/
H A Dtest_cat.rs3 use crate::subtest::{self, Context, SubTest};
16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
24 impl SubTest for TestCat {
H A Dtest_print_cfg.rs8 use crate::subtest::{self, Context, SubTest};
16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
24 impl SubTest for TestPrintCfg {
H A Dtest_alias_analysis.rs9 use crate::subtest::{Context, SubTest, run_filecheck};
16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
24 impl SubTest for TestAliasAnalysis {
H A Dtest_legalizer.rs6 use crate::subtest::{Context, SubTest, run_filecheck};
13 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
21 impl SubTest for TestLegalizer {
H A Dtest_safepoint.rs1 use crate::subtest::{Context, SubTest, run_filecheck};
8 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
16 impl SubTest for TestSafepoint {
H A Dtest_optimize.rs10 use crate::subtest::{Context, SubTest, check_precise_output, run_filecheck};
25 pub fn subtest(parsed: &TestCommand) -> Result<Box<dyn SubTest>> { in subtest() argument
39 impl SubTest for TestOptimize {
H A Dtest_verifier.rs13 use crate::subtest::{Context, SubTest};
22 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
30 impl SubTest for TestVerifier {
H A Dtest_compile.rs5 use crate::subtest::{Context, SubTest, check_precise_output, run_filecheck};
22 pub fn subtest(parsed: &TestCommand) -> Result<Box<dyn SubTest>> { in subtest() argument
38 impl SubTest for TestCompile {
H A Dtest_domtree.rs16 use crate::subtest::{Context, SubTest, run_filecheck};
28 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
36 impl SubTest for TestDomtree {
H A Dtest_interpret.rs7 use crate::subtest::SubTest;
24 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
32 impl SubTest for TestInterpret {
H A Dtest_inline.rs11 use crate::subtest::{Context, SubTest, check_precise_output, run_filecheck};
43 pub fn subtest(parsed: &TestCommand) -> Result<Box<dyn SubTest>> { in subtest() argument
56 impl SubTest for TestInline {
H A Drunone.rs4 use crate::subtest::SubTest;
113 tests: &'a [Box<dyn SubTest>], in test_tuples() argument
116 ) -> anyhow::Result<Vec<(&'a dyn SubTest, &'a Flags, Option<&'a dyn TargetIsa>)>> { in test_tuples() argument
H A Dtest_run.rs7 use crate::subtest::{Context, SubTest};
22 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
202 impl SubTest for TestRun {
H A Dtest_unwind.rs5 use crate::subtest::{Context, SubTest, run_filecheck};
16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest() argument
24 impl SubTest for TestUnwind {
H A Dlib.rs87 fn new_subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn subtest::SubTest>> { in new_subtest() argument
H A Dsubtest.rs54 pub trait SubTest { interface