Return-Path: X-Original-To: apmail-hive-commits-archive@www.apache.org Delivered-To: apmail-hive-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 292B51105F for ; Thu, 4 Sep 2014 01:54:04 +0000 (UTC) Received: (qmail 161 invoked by uid 500); 4 Sep 2014 01:54:04 -0000 Delivered-To: apmail-hive-commits-archive@hive.apache.org Received: (qmail 119 invoked by uid 500); 4 Sep 2014 01:54:04 -0000 Mailing-List: contact commits-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hive.apache.org Delivered-To: mailing list commits@hive.apache.org Received: (qmail 107 invoked by uid 99); 4 Sep 2014 01:54:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Sep 2014 01:54:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Sep 2014 01:54:02 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CA9AE23889EC; Thu, 4 Sep 2014 01:53:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1622393 - /hive/trunk/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm Date: Thu, 04 Sep 2014 01:53:42 -0000 To: commits@hive.apache.org From: thejas@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140904015342.CA9AE23889EC@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: thejas Date: Thu Sep 4 01:53:42 2014 New Revision: 1622393 URL: http://svn.apache.org/r1622393 Log: HIVE-7947 : Add message at the end of each testcase with timestamp in Webhcat system tests (Jagruti Varia, reviewed by Deepesh Khandelwal, Eugene Koifman, Thejas Nair) Modified: hive/trunk/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm Modified: hive/trunk/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm URL: http://svn.apache.org/viewvc/hive/trunk/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm?rev=1622393&r1=1622392&r2=1622393&view=diff ============================================================================== --- hive/trunk/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm (original) +++ hive/trunk/hcatalog/src/test/e2e/templeton/drivers/TestDriverCurl.pm Thu Sep 4 01:53:42 2014 @@ -1422,7 +1422,7 @@ sub run $testStatuses->{$testName} = $failedStr; } - $msg= "$msg at " . time . "\n"; + $msg .= "\nEnding test $testName at " . $endTime ."\n"; #print $msg; print $log $msg; $duration = $endTime - $beginTime; @@ -1435,6 +1435,7 @@ sub run if ($@) { $msg= "ERROR $subName at : ".__LINE__." Failed to run test $testName <$@>\n"; + $msg .= "Ending test $testName at " . time ."\n"; #print $msg; print $log $msg; $testStatuses->{$testName} = $abortedStr;