mirror of
https://github.com/phpv8/v8js.git
synced 2024-12-22 18:41:52 +00:00
Make valgrind run on travis tests of v8js
Valgrind checks for invalid memory accesses and memory leaks. "-m" makes php unit tests use valgrind (and malloc instead of emalloc, etc.)
This commit is contained in:
parent
4161008417
commit
3e862b1aa1
@ -8,7 +8,11 @@ php:
|
||||
env:
|
||||
- V8VER=5.2
|
||||
- V8VER=5.1
|
||||
- V8VER=5.2 VALGRIND=1
|
||||
|
||||
before_install: make -f Makefile.travis before_install
|
||||
install: make -f Makefile.travis install
|
||||
install:
|
||||
- if [ "$VALGRIND" = 1 ]; then sudo apt-get install -qq valgrind; export TEST_PHP_ARGS="-m"; fi
|
||||
- make -f Makefile.travis install
|
||||
|
||||
script: make -f Makefile.travis test
|
||||
|
Loading…
Reference in New Issue
Block a user