Searched refs:TestCommand (Results 1 – 18 of 18) sorted by relevance
| /wasmtime-44.0.1/cranelift/reader/src/ |
| H A D | testcommand.rs | 19 pub struct TestCommand<'a> { struct 35 impl<'a> TestCommand<'a> { argument 51 impl<'a> Display for TestCommand<'a> { implementation 94 assert_eq!(&TestCommand::new("").to_string(), "\n"); in parse_command() 95 assert_eq!(&TestCommand::new("cat").to_string(), "cat\n"); in parse_command() 96 assert_eq!(&TestCommand::new("cat ").to_string(), "cat\n"); in parse_command() 97 assert_eq!(&TestCommand::new("cat 1 ").to_string(), "cat 1\n"); in parse_command() 99 &TestCommand::new("cat one=4 two t").to_string(), in parse_command()
|
| H A D | testfile.rs | 10 use crate::testcommand::TestCommand; 20 pub commands: Vec<TestCommand<'a>>,
|
| H A D | lib.rs | 13 pub use crate::testcommand::{TestCommand, TestOption};
|
| H A D | parser.rs | 8 use crate::testcommand::TestCommand; 133 let commands: Vec<TestCommand<'a>>; in parse_test() 991 pub fn parse_cmdline_passes(&mut self, passes: &'a [String]) -> Vec<TestCommand<'a>> { in parse_cmdline_passes() 994 list.push(TestCommand::new(pass)); in parse_cmdline_passes() 1000 pub fn parse_test_commands(&mut self) -> Vec<TestCommand<'a>> { in parse_test_commands() 1003 list.push(TestCommand::new(self.consume_line())); in parse_test_commands()
|
| /wasmtime-44.0.1/cranelift/filetests/src/ |
| H A D | test_cat.rs | 5 use cranelift_reader::TestCommand; 16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_print_cfg.rs | 11 use cranelift_reader::TestCommand; 16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_alias_analysis.rs | 11 use cranelift_reader::TestCommand; 16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_legalizer.rs | 8 use cranelift_reader::TestCommand; 13 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_safepoint.rs | 3 use cranelift_reader::TestCommand; 8 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_optimize.rs | 14 use cranelift_reader::{TestCommand, TestOption}; 25 pub fn subtest(parsed: &TestCommand) -> Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_verifier.rs | 16 use cranelift_reader::TestCommand; 22 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | lib.rs | 10 use cranelift_reader::TestCommand; 87 fn new_subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn subtest::SubTest>> { in new_subtest()
|
| H A D | test_compile.rs | 8 use cranelift_reader::{TestCommand, TestOption}; 22 pub fn subtest(parsed: &TestCommand) -> Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_domtree.rs | 21 use cranelift_reader::TestCommand; 28 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_interpret.rs | 17 use cranelift_reader::{Details, TestCommand, TestFile, parse_run_command}; 24 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_inline.rs | 19 use cranelift_reader::{TestCommand, TestOption}; 43 pub fn subtest(parsed: &TestCommand) -> Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_run.rs | 14 use cranelift_reader::TestCommand; 22 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|
| H A D | test_unwind.rs | 7 use cranelift_reader::TestCommand; 16 pub fn subtest(parsed: &TestCommand) -> anyhow::Result<Box<dyn SubTest>> { in subtest()
|