Ignore variable leaks exposed by server.js test (due to LZMA mod)

This will have to be fixed once LZMA module is updated.
See https://github.com/nmrugg/LZMA-JS/issues/8

With this change "make check-full" completes successfully for me.
Looking forward to Jenkins experience.
This commit is contained in:
Sandro Santilli 2013-04-12 11:52:09 +02:00
parent 1c910ec513
commit 369b0f6110
2 changed files with 6 additions and 3 deletions

View File

@ -8,12 +8,15 @@ config/environments/test.js: config/environments/test.js.example
./configure
check-local: config/environments/test.js
./run_tests.sh ${RUNTESTFLAGS} \
./run_tests.sh --nodrop ${RUNTESTFLAGS} \
test/unit/cartodb/redis_pool.test.js \
test/unit/cartodb/req2params.test.js \
test/acceptance/cache_validator.js \
test/acceptance/server.js \
test/acceptance/multilayer.js
# FIXME: LZMA module leaks a variable, waiting for new release
# https://github.com/nmrugg/LZMA-JS/issues/8
MOCHA_OPTS="--ignore-leaks" ./run_tests.sh --nocreate ${RUNTESTFLAGS} \
test/acceptance/server.js \
check-submodules:
for sub in windshaft grainstore mapnik; do \

View File

@ -76,7 +76,7 @@ fi
PATH=node_modules/.bin/:$PATH
echo "Running tests"
mocha -u tdd ${TESTS}
mocha -u tdd ${MOCHA_OPTS} ${TESTS}
ret=$?
cleanup