Return-Path: X-Original-To: apmail-kudu-commits-archive@minotaur.apache.org Delivered-To: apmail-kudu-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 B36B118FA7 for ; Thu, 18 Feb 2016 02:16:00 +0000 (UTC) Received: (qmail 78631 invoked by uid 500); 18 Feb 2016 02:16:00 -0000 Delivered-To: apmail-kudu-commits-archive@kudu.apache.org Received: (qmail 78612 invoked by uid 500); 18 Feb 2016 02:16:00 -0000 Mailing-List: contact commits-help@kudu.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.incubator.apache.org Delivered-To: mailing list commits@kudu.incubator.apache.org Received: (qmail 78603 invoked by uid 99); 18 Feb 2016 02:16:00 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Feb 2016 02:16:00 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 076B3C0C6F for ; Thu, 18 Feb 2016 02:16:00 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.226 X-Spam-Level: X-Spam-Status: No, score=-3.226 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.006] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id neq5tGFvClEw for ; Thu, 18 Feb 2016 02:15:59 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 891B75F1EB for ; Thu, 18 Feb 2016 02:15:58 +0000 (UTC) Received: (qmail 78576 invoked by uid 99); 18 Feb 2016 02:15:57 -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; Thu, 18 Feb 2016 02:15:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8EDFFE020D; Thu, 18 Feb 2016 02:15:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: todd@apache.org To: commits@kudu.incubator.apache.org Date: Thu, 18 Feb 2016 02:16:00 -0000 Message-Id: <307a03083d8344e49607930d8091036e@git.apache.org> In-Reply-To: <2cf8c083e78b4494a1311dd1524c53e5@git.apache.org> References: <2cf8c083e78b4494a1311dd1524c53e5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/4] incubator-kudu git commit: build: fix ignoring of clock sync errors in flaky test list build: fix ignoring of clock sync errors in flaky test list Previously, I tried to add this same functionality, but used 'grep' instead of 'zgrep'. In the production test slaves, the test logs are gzipped, so we need to 'zgrep'. It turns out that zgrep is also smart enough to grep non-compressed files, so it's safe to use it regardless of the file extension. Change-Id: Ic8645f6f046700a28d3306e0db1be9dbfb06a433 Reviewed-on: http://gerrit.cloudera.org:8080/2218 Reviewed-by: Adar Dembo Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-kudu/commit/3e6c3033 Tree: http://git-wip-us.apache.org/repos/asf/incubator-kudu/tree/3e6c3033 Diff: http://git-wip-us.apache.org/repos/asf/incubator-kudu/diff/3e6c3033 Branch: refs/heads/master Commit: 3e6c303375eb82e59d86bcd4c6bdf999336342ff Parents: 9ca4127 Author: Todd Lipcon Authored: Wed Feb 17 17:32:39 2016 -0800 Committer: Todd Lipcon Committed: Thu Feb 18 02:14:55 2016 +0000 ---------------------------------------------------------------------- build-support/report-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/3e6c3033/build-support/report-test.sh ---------------------------------------------------------------------- diff --git a/build-support/report-test.sh b/build-support/report-test.sh index f5298dc..e375c90 100755 --- a/build-support/report-test.sh +++ b/build-support/report-test.sh @@ -72,7 +72,7 @@ fi # We sometimes have flaky infrastructure where NTP is broken. In that case # do not report it as a failed test. -if grep -q 'Clock considered unsynchronized' $LOGFILE ; then +if zgrep -q 'Clock considered unsynchronized' $LOGFILE ; then echo Not reporting test that failed due to NTP issues. exit 1 fi