updated makefile

remotes/origin/v0.6.x
brianc 14 years ago
parent 4b722264b1
commit dc964a66c1

@ -11,7 +11,7 @@ params := -u $(user) --password $(password) -p $(port) -d $(database) -h $(host)
node-command := xargs -n 1 -I file node file $(params)
.PHONY : test test-connection test-integration bench test-native build
.PHONY : test test-connection test-integration bench test-native
test: test-unit
test-all: test-unit test-integration test-native
@ -29,8 +29,10 @@ test-connection:
@node script/test-connection.js $(params)
test-native: build/default/binding.node
@echo "***Testing native bindings***"
@find test/native -name "*-tests.js" | $(node-command)
@find test/integration -name "*-tests.js" | $(node-command) --native true
test-integration: test-connection
@echo "***Testing Pure Javascript***"
@find test/integration -name "*-tests.js" | $(node-command)

Loading…
Cancel
Save