File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ ifdef ENABLE_CONVERT_V8_JSON_TO_XML
4343 TAP_V8_INTL_JSON := $(PWD)/v8-intl-tap.json
4444 TAP_V8_BENCHMARKS_JSON := $(PWD)/v8-benchmarks-tap.json
4545
46+ # By default, the V8's JSON test output only includes the tests which have
47+ # failed. We use --slow-tests-cutoff to ensure that all tests are present
48+ # in the output, including those which pass.
4649 TAP_V8 := --json-test-results $(TAP_V8_JSON) --slow-tests-cutoff 1000000
4750 TAP_V8_INTL := --json-test-results $(TAP_V8_INTL_JSON) --slow-tests-cutoff 1000000
4851 TAP_V8_BENCHMARKS := --json-test-results $(TAP_V8_BENCHMARKS_JSON) --slow-tests-cutoff 1000000
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2+ # Large parts of this file are modified from
3+ # deps/v8/tools/testrunner/local/junit_output.py, which no longer exists in
4+ # latest V8.
25#
36# Copyright 2013 the V8 project authors. All rights reserved.
47# Redistribution and use in source and binary forms, with or without
You can’t perform that action at this time.
0 commit comments