Home
last modified time | relevance | path

Searched refs:ConfigError (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/tools/testing/kunit/
Dkunit_kernel.py38 class ConfigError(Exception): class
57 raise ConfigError('Could not call make command: ' + str(e))
59 raise ConfigError(e.output.decode())
65 raise ConfigError('Only the "um" arch is supported for alltests')
79 raise ConfigError('Could not call make command: ' + str(e))
81 raise ConfigError(e.output.decode())
206 raise ConfigError(arch + ' is not a valid arch')
255 raise ConfigError(f'Specified kunitconfig ({kunitconfig_path}) does not exist')
267 except ConfigError as e:
294 except ConfigError as e:
[all …]
Dkunit_tool_test.py281 with self.assertRaisesRegex(kunit_kernel.ConfigError, 'nonexistent.* does not exist'):