Skip to content

Commit 4c423e6

Browse 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 <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent 9809992 commit 4c423e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
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)