Home
last modified time | relevance | path

Searched refs:FileFormatError (Results 1 – 7 of 7) sorted by relevance

/test/vts/utils/python/coverage/
Dparser.py25 class FileFormatError(Exception): class
66 raise FileFormatError('Invalid file format.')
80 raise FileFormatError('Corrupt file.')
115 raise FileFormatError('Corrupt file.')
Dsancov_parser.py81 raise parser.FileFormatError('Empty file.')
90 raise parser.FileFormatError('Invalid magic.')
Dgcda_parser.py108 except parser.FileFormatError:
116 raise parser.FileFormatError(
Dgcno_parser.py104 except parser.FileFormatError:
106 raise parser.FileFormatError("Invalid file.")
Dcoverage_utils.py33 from vts.utils.python.coverage.parser import FileFormatError
176 except FileFormatError:
445 except FileFormatError:
565 except FileFormatError:
589 except FileFormatError:
Dparser_test.py173 self.assertRaises(parser.FileFormatError, p.ReadInt)
212 self.assertRaises(parser.FileFormatError, p.ReadString)
Dsancov_parser_test.py48 with self.assertRaises(parser.FileFormatError) as context: