Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A52E5200CD1 for ; Wed, 12 Jul 2017 01:25:53 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A35461678E6; Tue, 11 Jul 2017 23:25:53 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1A5E71678E3 for ; Wed, 12 Jul 2017 01:25:52 +0200 (CEST) Received: (qmail 73071 invoked by uid 500); 11 Jul 2017 23:25:52 -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 73062 invoked by uid 99); 11 Jul 2017 23:25:52 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Jul 2017 23:25:52 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 98ED68117E; Tue, 11 Jul 2017 23:25:47 +0000 (UTC) Date: Tue, 11 Jul 2017 23:25:48 +0000 To: "commits@couchdb.apache.org" Subject: [couchdb] 01/02: TMP: soak-javascript target MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: davisp@apache.org Reply-To: "commits@couchdb.apache.org" In-Reply-To: <149981554711.23208.15914160086849238618@gitbox.apache.org> References: <149981554711.23208.15914160086849238618@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: couchdb X-Git-Refname: refs/heads/optimize-ddoc-cache X-Git-Reftype: branch X-Git-Rev: 38e54ee12a501882b875eb6353bb60cd52422cdb X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20170711232548.98ED68117E@gitbox.apache.org> archived-at: Tue, 11 Jul 2017 23:25:53 -0000 This is an automated email from the ASF dual-hosted git repository. davisp pushed a commit to branch optimize-ddoc-cache in repository https://gitbox.apache.org/repos/asf/couchdb.git commit 38e54ee12a501882b875eb6353bb60cd52422cdb Author: Paul J. Davis AuthorDate: Tue Jul 11 18:25:12 2017 -0500 TMP: soak-javascript target --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Makefile b/Makefile index 9b1701e..1fba02c 100644 --- a/Makefile +++ b/Makefile @@ -124,6 +124,21 @@ endif -c 'startup_jitter=0' \ test/javascript/run $(suites) +.PHONY: soak-javascript +soak-javascript: + @mkdir -p share/www/script/test +ifeq ($(IN_RELEASE), true) + @cp test/javascript/tests/lorem*.txt share/www/script.test/ +else + @mkdir -p src/fauxton/dist/release/test + @cp test/javascript/tests/lorem*.txt src/fauxton/dist/release/test/ +endif + @rm -rf dev/lib + while [ $$? -eq 0 ]; do \ + dev/run -n 1 -q --with-admin-party-please \ + -c 'startup_jitter=0' \ + test/javascript/run $(suites); \ + done .PHONY: check-qs # target: check-qs - Run query server tests (ruby and rspec required!) -- To stop receiving notification emails like this one, please contact "commits@couchdb.apache.org" .