summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoan Touzet <wohali@users.noreply.github.com>2018-11-13 13:04:26 -0500
committerGitHub <noreply@github.com>2018-11-13 13:04:26 -0500
commitb5684968068a22ed35b4fed0e93eda06a48bb7a4 (patch)
tree3ae70dda23759fe97f9b498261aa6dc90d60c4e7 /Makefile
parentf12f4c5847a1cfa409c70dbc75b64a4f9e3645a3 (diff)
downloadcouchdb-b5684968068a22ed35b4fed0e93eda06a48bb7a4.tar.gz
Improve Mango test harness, add Windows compat (#1733)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 4107c84f3..a59aabc2c 100644
--- a/Makefile
+++ b/Makefile
@@ -191,7 +191,6 @@ endif
'test/javascript/run --suites "$(suites)" \
--ignore "$(ignore_js_suites)"'
-# TODO: port to Makefile.win
.PHONY: test-cluster-with-quorum
test-cluster-with-quorum: devclean
@mkdir -p share/www/script/test
@@ -208,7 +207,6 @@ endif
--ignore "$(ignore_js_suites)" \
--path test/javascript/tests-cluster/with-quorum'
-# TODO: port to Makefile.win
.PHONY: test-cluster-without-quorum
test-cluster-without-quorum: devclean
@mkdir -p share/www/script/test
@@ -281,8 +279,7 @@ build-test:
.PHONY: mango-test
# target: mango-test - Run Mango tests
mango-test: devclean all
- ./test/build/test-run-couch-for-mango.sh \
-
+ @cd src/mango && ../../dev/run -n 1 --admin=testuser:testpass nosetests
################################################################################
# Developing