Return-Path: X-Original-To: apmail-hadoop-common-commits-archive@www.apache.org Delivered-To: apmail-hadoop-common-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 E937317DC9 for ; Fri, 4 Sep 2015 21:46:13 +0000 (UTC) Received: (qmail 95444 invoked by uid 500); 4 Sep 2015 21:46:10 -0000 Delivered-To: apmail-hadoop-common-commits-archive@hadoop.apache.org Received: (qmail 95385 invoked by uid 500); 4 Sep 2015 21:46:10 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 95354 invoked by uid 99); 4 Sep 2015 21:46:10 -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; Fri, 04 Sep 2015 21:46:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 31458E00B2; Fri, 4 Sep 2015 21:46:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aw@apache.org To: common-commits@hadoop.apache.org Message-Id: <02f9a9473d4c4f6489fa634db423696b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hadoop git commit: HADOOP-12355. test-patch TAP plugin should use ${SED} instead of sed (Jagadesh Kiran N via aw) Date: Fri, 4 Sep 2015 21:46:10 +0000 (UTC) Repository: hadoop Updated Branches: refs/heads/HADOOP-12111 41ae6fd0d -> a6b6c44b7 HADOOP-12355. test-patch TAP plugin should use ${SED} instead of sed (Jagadesh Kiran N via aw) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/a6b6c44b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/a6b6c44b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/a6b6c44b Branch: refs/heads/HADOOP-12111 Commit: a6b6c44b7dcd8378c0ee05722ae8627204090670 Parents: 41ae6fd Author: Allen Wittenauer Authored: Fri Sep 4 14:45:29 2015 -0700 Committer: Allen Wittenauer Committed: Fri Sep 4 14:45:29 2015 -0700 ---------------------------------------------------------------------- dev-support/test-patch.d/tap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/a6b6c44b/dev-support/test-patch.d/tap.sh ---------------------------------------------------------------------- diff --git a/dev-support/test-patch.d/tap.sh b/dev-support/test-patch.d/tap.sh index f94a14f..7ced908 100755 --- a/dev-support/test-patch.d/tap.sh +++ b/dev-support/test-patch.d/tap.sh @@ -53,7 +53,7 @@ function tap_process_tests if [[ -n "${filenames}" ]]; then module_failed_tests=$(echo "${filenames}" \ - | sed -e "s,${TAP_LOG_DIR},,g" -e s,^/,,g ) + | ${SED} -e "s,${TAP_LOG_DIR},,g" -e s,^/,,g ) # shellcheck disable=SC2086 cat ${filenames} >> "${PATCH_DIR}/patch-${filefrag}.tap" TAP_LOGS="${TAP_LOGS} @@BASE@@/patch-${filefrag}.tap"