Lines Matching refs: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
96 def collect_values(inputs: InputsForTest,
105 names = inputs.get_names(type_word)
107 for expr in inputs.generate_expressions(names)
124 def run_one(self, inputs: InputsForTest, type_word: str) -> None:
128 Use the inputs to figure out what arguments to pass to macros that
131 expressions, values = collect_values(inputs, type_word,
148 def run_all(self, inputs: InputsForTest) -> None:
149 """Run psa_constant_names on all the gathered inputs."""
152 self.run_one(inputs, type_word)
195 inputs = gather_inputs(headers, TEST_SUITES)
197 tests.run_all(inputs)