File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
crates/intrinsic-test/src Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ use intrinsic::Intrinsic;
1414use json_parser:: get_neon_intrinsics;
1515use types:: TypeKind ;
1616
17- pub struct ArmTestProcessor {
17+ pub struct ArmArchitectureTest {
1818 intrinsics : Vec < Intrinsic > ,
1919 cli_options : ProcessedCli ,
2020}
2121
22- impl SupportedArchitectureTest for ArmTestProcessor {
22+ impl SupportedArchitectureTest for ArmArchitectureTest {
2323 fn create ( cli_options : ProcessedCli ) -> Self {
2424 let a32 = cli_options. target . contains ( "v7" ) ;
2525 let mut intrinsics =
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ extern crate log;
55mod arm;
66mod common;
77
8- use arm:: ArmTestProcessor ;
8+ use arm:: ArmArchitectureTest ;
99use common:: SupportedArchitectureTest ;
1010use common:: types:: { Cli , ProcessedCli } ;
1111
@@ -17,7 +17,9 @@ fn main() {
1717 let test_environment_result = match processed_cli_options. target . as_str ( ) {
1818 "aarch64-unknown-linux-gnu"
1919 | "armv7-unknown-linux-gnueabihf"
20- | "aarch64_be-unknown-linux-gnu" => Some ( ArmTestProcessor :: create ( processed_cli_options) ) ,
20+ | "aarch64_be-unknown-linux-gnu" => {
21+ Some ( ArmArchitectureTest :: create ( processed_cli_options) )
22+ }
2123
2224 _ => None ,
2325 } ;
You can’t perform that action at this time.
0 commit comments