Return-Path: X-Original-To: apmail-yetus-commits-archive@minotaur.apache.org Delivered-To: apmail-yetus-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A75F31865E for ; Sat, 17 Oct 2015 03:52:53 +0000 (UTC) Received: (qmail 22898 invoked by uid 500); 17 Oct 2015 03:52:53 -0000 Delivered-To: apmail-yetus-commits-archive@yetus.apache.org Received: (qmail 22876 invoked by uid 500); 17 Oct 2015 03:52:53 -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 22857 invoked by uid 99); 17 Oct 2015 03:52:53 -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; Sat, 17 Oct 2015 03:52:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3E585E042D; Sat, 17 Oct 2015 03:52:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aw@apache.org To: commits@yetus.apache.org Date: Sat, 17 Oct 2015 03:52:54 -0000 Message-Id: <04965fb15ab2491b95f346ab4f24d024@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/3] yetus git commit: YETUS-85. test types aren't getting initialized YETUS-85. test types aren't getting initialized Project: http://git-wip-us.apache.org/repos/asf/yetus/repo Commit: http://git-wip-us.apache.org/repos/asf/yetus/commit/0f247809 Tree: http://git-wip-us.apache.org/repos/asf/yetus/tree/0f247809 Diff: http://git-wip-us.apache.org/repos/asf/yetus/diff/0f247809 Branch: refs/heads/YETUS-83 Commit: 0f247809837e019f7cbedf0dac7bc6c1299ac337 Parents: 03dc31a Author: Allen Wittenauer Authored: Fri Oct 16 20:40:57 2015 -0700 Committer: Allen Wittenauer Committed: Fri Oct 16 20:51:33 2015 -0700 ---------------------------------------------------------------------- dev-support/core.d/01-common.sh | 4 ++-- dev-support/smart-apply-patch.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/yetus/blob/0f247809/dev-support/core.d/01-common.sh ---------------------------------------------------------------------- diff --git a/dev-support/core.d/01-common.sh b/dev-support/core.d/01-common.sh index 5e0f29b..93ebea0 100755 --- a/dev-support/core.d/01-common.sh +++ b/dev-support/core.d/01-common.sh @@ -198,7 +198,7 @@ function parse_args_plugins { declare plugin - for plugin in ${PLUGINS} ${BUGSYSTEMS} ${TESTFORMATS} ${BUILDTOOLS}; do + for plugin in ${TESTTYPES} ${BUGSYSTEMS} ${TESTFORMATS} ${BUILDTOOLS}; do if declare -f ${plugin}_parse_args >/dev/null 2>&1; then yetus_debug "Running ${plugin}_parse_args" #shellcheck disable=SC2086 @@ -216,7 +216,7 @@ function plugins_initialize { declare plugin - for plugin in ${PLUGINS} ${BUGSYSTEMS} ${TESTFORMATS} ${BUILDTOOLS}; do + for plugin in ${TESTTYPES} ${BUGSYSTEMS} ${TESTFORMATS} ${BUILDTOOLS}; do if declare -f ${plugin}_initialize >/dev/null 2>&1; then yetus_debug "Running ${plugin}_initialize" #shellcheck disable=SC2086 http://git-wip-us.apache.org/repos/asf/yetus/blob/0f247809/dev-support/smart-apply-patch.sh ---------------------------------------------------------------------- diff --git a/dev-support/smart-apply-patch.sh b/dev-support/smart-apply-patch.sh index 8a10b33..57a9d4b 100755 --- a/dev-support/smart-apply-patch.sh +++ b/dev-support/smart-apply-patch.sh @@ -110,7 +110,7 @@ function yetus_usage importplugins unset TESTFORMATS - unset PLUGINS + unset TESTTYPES unset BUILDTOOLS for plugin in ${BUGSYSTEMS}; do @@ -214,9 +214,9 @@ setup_defaults parse_args "$@" importplugins -yetus_debug "Removing BUILDTOOLS, PLUGINS, and TESTFORMATS from installed plug list" +yetus_debug "Removing BUILDTOOLS, TESTTYPES, and TESTFORMATS from installed plug list" unset BUILDTOOLS -unset PLUGINS +unset TESTTYPES unset TESTFORMATS parse_args_plugins "$@"