From commits-return-1382-archive-asf-public=cust-asf.ponee.io@yetus.apache.org Mon Sep 30 16:39:50 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 691A0180656 for ; Mon, 30 Sep 2019 18:39:50 +0200 (CEST) Received: (qmail 18163 invoked by uid 500); 30 Sep 2019 16:39:49 -0000 Mailing-List: contact commits-help@yetus.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@yetus.apache.org Delivered-To: mailing list commits@yetus.apache.org Received: (qmail 18154 invoked by uid 99); 30 Sep 2019 16:39:49 -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; Mon, 30 Sep 2019 16:39:49 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A443B81E73; Mon, 30 Sep 2019 16:39:49 +0000 (UTC) Date: Mon, 30 Sep 2019 16:39:49 +0000 To: "commits@yetus.apache.org" Subject: [yetus] branch master updated: YETUS-914. 'make test' is not processed correctly (#75) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156986158961.11750.1698148064885880691@gitbox.apache.org> From: aw@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: yetus X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: b067f8ec5e34a384055aa00f39f4344b9ab710aa X-Git-Newrev: b7c060bde16c9ca92f44b1ef69cd48f60e08c426 X-Git-Rev: b7c060bde16c9ca92f44b1ef69cd48f60e08c426 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/yetus.git The following commit(s) were added to refs/heads/master by this push: new b7c060b YETUS-914. 'make test' is not processed correctly (#75) b7c060b is described below commit b7c060bde16c9ca92f44b1ef69cd48f60e08c426 Author: Allen Wittenauer AuthorDate: Mon Sep 30 09:39:44 2019 -0700 YETUS-914. 'make test' is not processed correctly (#75) Signed-off-by: Sean Busbey --- precommit/src/main/shell/test-patch.d/make.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/precommit/src/main/shell/test-patch.d/make.sh b/precommit/src/main/shell/test-patch.d/make.sh index 2dff730..86ba512 100755 --- a/precommit/src/main/shell/test-patch.d/make.sh +++ b/precommit/src/main/shell/test-patch.d/make.sh @@ -27,6 +27,7 @@ function make_usage { yetus_add_option "--make-cmd=" "The 'make' command to use (default: '${MAKE}')" yetus_add_option "--make-file=" "The name of the file the make cmd should work on (default: '${MAKEFILE}')" + yetus_add_option "--make-use-git-clean" "Instead of 'make clean' use 'git clean' to reset the source checkout" } ## @description precheck make @@ -122,7 +123,7 @@ function make_modules_worker fi ;; unit) - modules_workers "${repostatus}" test test + modules_workers "${repostatus}" unit test ;; *) # shellcheck disable=SC2034