Skip to content

Commit

Permalink
Allow to specify V8 version, for example:
Browse files Browse the repository at this point in the history
 V8_VERSION=0x031511 ENGINE=v8 make check-javascript-test-suite
  • Loading branch information
Richie765 committed Aug 29, 2014
1 parent 19d2976 commit b0afc7a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Examples/test-suite/javascript/Makefile.in
Expand Up @@ -19,8 +19,16 @@ else
JSENGINE=node
endif

ifneq (, $(V8_VERSION))
JSV8_VERSION=$(V8_VERSION)
else
JSV8_VERSION=0x031110
endif

include $(srcdir)/../common.mk

SWIGOPT += -DV8_VERSION=$(JSV8_VERSION)

_setup = \
if [ -f $(SCRIPTDIR)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then \
echo "$(ACTION)ing $(LANGUAGE) ($(JSENGINE)) testcase $* (with run test)" ; \
Expand Down

0 comments on commit b0afc7a

Please sign in to comment.