Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C5253184CE for ; Mon, 19 Oct 2015 19:01:26 +0000 (UTC) Received: (qmail 75201 invoked by uid 500); 19 Oct 2015 19:01:09 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 74994 invoked by uid 500); 19 Oct 2015 19:01:09 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 74804 invoked by uid 99); 19 Oct 2015 19:01:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Oct 2015 19:01:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C4BA9E051D; Mon, 19 Oct 2015 19:01:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Mon, 19 Oct 2015 19:01:11 -0000 Message-Id: <9c7d9ada45d446e49072d0e7d12b54d4@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [4/9] couchdb commit: updated refs/heads/master to c071df9 Simplify exit on first test suite failure Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/e5a1c9b8 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/e5a1c9b8 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/e5a1c9b8 Branch: refs/heads/master Commit: e5a1c9b8fa27e10216bb109ea8f2acf4611035f9 Parents: 366c856 Author: Alexander Shorin Authored: Sat Oct 17 03:31:03 2015 +0300 Committer: Alexander Shorin Committed: Mon Oct 19 13:47:39 2015 +0300 ---------------------------------------------------------------------- .travis.yml | 2 +- Makefile | 5 ++++- run-tests.sh | 4 ---- 3 files changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/e5a1c9b8/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 920a8ee..f0f7126 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ before_install: - sudo apt-get -y install shunit2 before_script: ./configure -c --disable-docs --disable-fauxton script: - - ./run-tests.sh + - make check language: erlang otp_release: - 18.1 http://git-wip-us.apache.org/repos/asf/couchdb/blob/e5a1c9b8/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index f613c75..ee202bf 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,10 @@ fauxton: share/www .PHONY: check # target: check - Test everything -check: javascript eunit build-test +check: + @$(MAKE) eunit + @$(MAKE) javascript + @$(MAKE) build-test .PHONY: eunit http://git-wip-us.apache.org/repos/asf/couchdb/blob/e5a1c9b8/run-tests.sh ---------------------------------------------------------------------- diff --git a/run-tests.sh b/run-tests.sh deleted file mode 100755 index f8ab486..0000000 --- a/run-tests.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -ev - -# Eunit/Javascript tests -make check