Lines Matching full:in

28 …argument('-np', '--pool-size', type=int, default=1, help='Number of test cases to run in parallel')
117 for condition in spec.only:
118 if (condition == 'cpu') and ('gpu' in resource):
133 if 'Backend does not implement' in stderr:
135 elif 'Can only provide HOST memory for this backend' in stderr:
137 elif 'Can only set HOST memory for this backend' in stderr:
139 elif 'Test not implemented in single precision' in stderr:
140 return f'Test not implemented in single precision'
141 elif 'No SYCL devices of the requested type are available' in stderr:
143 elif 'You may need to add --download-ctetgen or --download-tetgen' in stderr:
157 … tuple[str, bool]: Tuple of the expected failure string and whether it was present in `stderr`
161 if test_id in ['t006', 't007']:
163 elif test_id in ['t008']:
165 elif test_id in ['t110', 't111', 't112', 't113', 't114']:
167 elif test_id in ['t115']:
168 … fail_str = 'Cannot grant CeedVector read-only array access, the access lock is already in use'
169 elif test_id in ['t116']:
170 fail_str = 'Cannot destroy CeedVector, the writable access lock is in use'
171 elif test_id in ['t117']:
173 elif test_id in ['t118']:
174 fail_str = 'Cannot sync CeedVector, the access lock is already in use'
175 elif test_id in ['t215']:
177 elif test_id in ['t303']:
179 elif test_id in ['t408']:
181 elif test_id in ['t409'] and contains_any(resource, ['memcheck']):
182 fail_str = 'Context data changed while accessed in read-only mode'
184 return fail_str, fail_str in stderr
195 return test[:4] in ['t003']