diff --git a/Makefile b/Makefile index bcb434d6a5576e..9798d92a87eff7 100644 --- a/Makefile +++ b/Makefile @@ -21,8 +21,9 @@ ifdef ENABLE_V8_TAP TAP_V8_BENCHMARKS := --junitout v8-benchmarks-tap.xml endif +V8_TEST_OPTIONS = $(V8_EXTRA_TEST_OPTIONS) ifdef DISABLE_V8_I18N - V8_TEST_NO_I18N := --noi18n + V8_TEST_OPTIONS += --noi18n V8_BUILD_OPTIONS += i18nsupport=off endif @@ -210,7 +211,7 @@ test-timers-clean: test-v8: # note: performs full test unless QUICKCHECK is specified deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \ - --mode=$(BUILDTYPE_LOWER) $(V8_TEST_NO_I18N) $(QUICKCHECK_ARG) \ + --mode=$(BUILDTYPE_LOWER) $(V8_TEST_OPTIONS) $(QUICKCHECK_ARG) \ --no-presubmit \ --shell-dir=$(PWD)/deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) \ $(TAP_V8)