Lines Matching full:index
346 index = field_names.index(key)
351 known[key] = test_fields[index].type(value) # type: ignore
354 known[key] = get_origin(test_fields[index].type)(value) # type: ignore
524 backend: str, test: str, index: int, verbose: bool) -> str:
529 …output_str += f' ok {index} - {spec.name}, {backend} # SKIP {test_case.skipped[0]["message"]}\n'
531 … output_str += f' not ok {index} - {spec.name}, {backend} ({test_case.elapsed_sec} s)\n'
533 output_str += f' ok {index} - {spec.name}, {backend} ({test_case.elapsed_sec} s)\n'
585 def run_test(index: int, test: str, spec: TestSpec, backend: str,
590 index (int): Index of backend for current spec
606 run_args[run_args.index('{ceed_resource}')] = backend
611 run_args[run_args.index('{nproc}')] = f'{nproc}'
755 output_str = test_case_output_string(test_case, spec, mode, backend, test, index, verbose)