From 4c423e649cbe3478f4f326ee243ce9b8d1bbae8b Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 28 Jun 2016 11:35:18 -0700 Subject: [PATCH] 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: https://github.com/nodejs/node/pull/7460 Reviewed-By: Michael Dawson Reviewed-By: James M Snell Reviewed-By: Sakthipriyan Vairamani --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1823d9b771..55ddb86db6 100644 --- a/Makefile +++ b/Makefile @@ -16,9 +16,9 @@ ifdef QUICKCHECK endif ifdef ENABLE_V8_TAP - TAP_V8 := --junitout v8-tap.xml - TAP_V8_INTL := --junitout v8-intl-tap.xml - TAP_V8_BENCHMARKS := --junitout v8-benchmarks-tap.xml + TAP_V8 := --junitout $(PWD)/v8-tap.xml + TAP_V8_INTL := --junitout $(PWD)/v8-intl-tap.xml + TAP_V8_BENCHMARKS := --junitout $(PWD)/v8-benchmarks-tap.xml endif ifdef DISABLE_V8_I18N