mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
NODE = node
|
|
NPM = npm
|
|
NODEUNIT = node_modules/nodeunit/bin/nodeunit
|
|
DOX = node_modules/dox/bin/dox
|
|
name = all
|
|
|
|
total: build_native
|
|
|
|
test-coverage:
|
|
rm -rf lib-cov/
|
|
jscoverage lib/ lib-cov/
|
|
@TEST_COVERAGE=true nodeunit test/ test/gridstore test/connection
|
|
|
|
build_native:
|
|
|
|
test: build_native
|
|
@echo "\n == Run All tests minus replicaset tests=="
|
|
$(NODE) dev/tools/test_all.js --noreplicaset --boot
|
|
|
|
test_pure: build_native
|
|
@echo "\n == Run All tests minus replicaset tests=="
|
|
$(NODE) dev/tools/test_all.js --noreplicaset --boot --nonative
|
|
|
|
test_junit: build_native
|
|
@echo "\n == Run All tests minus replicaset tests=="
|
|
$(NODE) dev/tools/test_all.js --junit --noreplicaset --nokill
|
|
|
|
jenkins: build_native
|
|
@echo "\n == Run All tests minus replicaset tests=="
|
|
$(NODE) dev/tools/test_all.js --junit --noreplicaset --nokill
|
|
|
|
test_nodeunit_pure:
|
|
@echo "\n == Execute Test Suite using Pure JS BSON Parser == "
|
|
@$(NODEUNIT) test/ test/gridstore test/bson
|
|
|
|
test_nodeunit_replicaset_pure:
|
|
@echo "\n == Execute Test Suite using Pure JS BSON Parser == "
|
|
@$(NODEUNIT) test/replicaset
|
|
|
|
test_nodeunit_native:
|
|
@echo "\n == Execute Test Suite using Native BSON Parser == "
|
|
@TEST_NATIVE=TRUE $(NODEUNIT) test/ test/gridstore test/bson
|
|
|
|
test_nodeunit_replicaset_native:
|
|
@echo "\n == Execute Test Suite using Native BSON Parser == "
|
|
@TEST_NATIVE=TRUE $(NODEUNIT) test/replicaset
|
|
|
|
test_all: build_native
|
|
@echo "\n == Run All tests =="
|
|
$(NODE) dev/tools/test_all.js --boot
|
|
|
|
test_all_junit: build_native
|
|
@echo "\n == Run All tests =="
|
|
$(NODE) dev/tools/test_all.js --junit --boot
|
|
|
|
clean:
|
|
rm ./external-libs/bson/bson.node
|
|
rm -r ./external-libs/bson/build
|
|
|
|
generate_docs:
|
|
$(NODE) dev/tools/build-docs.js
|
|
make --directory=./docs/sphinx-docs --file=Makefile html
|
|
|
|
.PHONY: total
|