Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4c423e6

Browse filesBrowse files
author
Myles Borins
committed
tools: explicit path for V8 test tap output
Currently we do not specific an absolute path for the tap output of the V8 test suite. This is proving to be unreliable across release lines. By prepending `$(PWD)` to each path we can guarantee it will always be in the root folder. PR-URL: #7460 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
1 parent 9809992 commit 4c423e6
Copy full SHA for 4c423e6

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Open diff view settings
Collapse file

‎Makefile‎

Copy file name to clipboardExpand all lines: Makefile
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ ifdef QUICKCHECK
1616
endif
1717

1818
ifdef ENABLE_V8_TAP
19-
TAP_V8 := --junitout v8-tap.xml
20-
TAP_V8_INTL := --junitout v8-intl-tap.xml
21-
TAP_V8_BENCHMARKS := --junitout v8-benchmarks-tap.xml
19+
TAP_V8 := --junitout $(PWD)/v8-tap.xml
20+
TAP_V8_INTL := --junitout $(PWD)/v8-intl-tap.xml
21+
TAP_V8_BENCHMARKS := --junitout $(PWD)/v8-benchmarks-tap.xml
2222
endif
2323

2424
ifdef DISABLE_V8_I18N

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.