Make Test262 results less verbose (#4090)

Changes:
- Don't dump each test output to stdout
- Upload test outputs as artifact to GitHub

JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác csaba.osztrogonac@h-lab.eu
This commit is contained in:
Csaba Osztrogonác
2020-08-03 10:40:26 +02:00
committed by GitHub
parent 26a299adf0
commit f1eba9f826
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -73,6 +73,10 @@ jobs:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Test262 - ES2015 - name: Test262 - ES2015
run: $RUNNER --test262-es2015 update run: $RUNNER --test262-es2015 update
- uses: actions/upload-artifact@v2
with:
name: Test262-ES2015-results
path: build/tests/test262_tests_es2015/local/bin/test262.report
Conformance_Tests_ESNext: Conformance_Tests_ESNext:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
@@ -80,6 +84,10 @@ jobs:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Test262 - ESNext - name: Test262 - ESNext
run: $RUNNER --test262-esnext update run: $RUNNER --test262-esnext update
- uses: actions/upload-artifact@v2
with:
name: Test262-ESNext-results
path: build/tests/test262_tests_esnext/local/bin/test262.report
Unit_Tests: Unit_Tests:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
+1 -1
View File
@@ -184,7 +184,7 @@ def main(args):
[test262_harness_path, [test262_harness_path,
'--command', command, '--command', command,
'--tests', args.test_dir, '--tests', args.test_dir,
'--full-summary'] '--summary']
if 'excludelist_path' in args and args.mode == 'default': if 'excludelist_path' in args and args.mode == 'default':
test262_command.extend(['--exclude-list', args.excludelist_path]) test262_command.extend(['--exclude-list', args.excludelist_path])