Make test262-es2015 output more verbose (#3924)

It makes easier to debug unexpected failures on the CI.

JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác oszi@inf.u-szeged.hu
This commit is contained in:
Csaba Osztrogonác
2020-06-30 12:47:54 +02:00
committed by GitHub
parent 5535ea88ac
commit 89342ea503
2 changed files with 13 additions and 4 deletions
+2 -2
View File
@@ -118,7 +118,7 @@ def update_exclude_list(args):
summary_found = False
for line in report_file:
if summary_found:
match = re.match(r" (\S*) ", line)
match = re.match(r" (\S*) in ", line)
if match:
failing_tests.add(match.group(1) + '.js')
elif line.startswith('Failed Tests'):
@@ -193,7 +193,7 @@ def main(args):
[os.path.join(args.test_dir, 'tools/packaging/test262.py'),
'--command', command,
'--tests', args.test_dir,
'--summary'],
'--full-summary'],
universal_newlines=True,
stdout=subprocess.PIPE,
**kwargs)