Bug 1478854 - Disable tests for uncomplete JSScript and inner LazyScript in ccov. r=nbp

This commit is contained in:
Tooru Fujisawa 2018-08-01 11:20:02 +09:00
parent bd066354c6
commit 1208955167

View File

@ -266,6 +266,11 @@ def main(argv):
# to be off when it starts.
options.exclude += [os.path.join('debug', 'Script-getOffsetsCoverage-02.js')]
# These tests expect functions to be parsed lazily, but lazy parsing
# is disabled on coverage build.
options.exclude += [os.path.join('debug', 'Debugger-findScripts-uncompleted-01.js')]
options.exclude += [os.path.join('debug', 'Debugger-findScripts-uncompleted-02.js')]
if options.exclude_from:
with open(options.exclude_from) as fh:
for line in fh: