Lines Matching full:inputs
41 """Read the list of inputs to test psa_constant_names with."""
42 inputs = inputs_class()
44 inputs.parse_header(header)
46 inputs.parse_test_cases(test_cases)
47 inputs.add_numerical_values()
48 inputs.gather_arguments()
49 return inputs
80 def collect_values(inputs: InputsForTest,
89 names = inputs.get_names(type_word)
90 expressions = sorted(inputs.generate_expressions(names))
106 def run_one(self, inputs: InputsForTest, type_word: str) -> None:
110 Use the inputs to figure out what arguments to pass to macros that
113 expressions, values = collect_values(inputs, type_word,
130 def run_all(self, inputs: InputsForTest) -> None:
131 """Run psa_constant_names on all the gathered inputs."""
134 self.run_one(inputs, type_word)
177 inputs = gather_inputs(headers, TEST_SUITES)
179 tests.run_all(inputs)