You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2013/04/17 02:39:30 UTC

svn commit: r1468701 - in /pig/trunk: CHANGES.txt test/e2e/pig/drivers/TestDriverPig.pm

Author: daijy
Date: Wed Apr 17 00:39:30 2013
New Revision: 1468701

URL: http://svn.apache.org/r1468701
Log:
PIG-3277: fix the path to the benchmarks file in the print statement

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/test/e2e/pig/drivers/TestDriverPig.pm

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1468701&r1=1468700&r2=1468701&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Wed Apr 17 00:39:30 2013
@@ -156,6 +156,8 @@ PIG-3013: BinInterSedes improve chararra
 
 BUG FIXES
 
+PIG-3277: fix the path to the benchmarks file in the print statement (arpitgupta via daijy)
+
 PIG-3122: Operators should not implicitly become reserved keywords (jcoveney via cheolsoo)
 
 PIG-3193: Fix "ant docs" warnings (cheolsoo)

Modified: pig/trunk/test/e2e/pig/drivers/TestDriverPig.pm
URL: http://svn.apache.org/viewvc/pig/trunk/test/e2e/pig/drivers/TestDriverPig.pm?rev=1468701&r1=1468700&r2=1468701&view=diff
==============================================================================
--- pig/trunk/test/e2e/pig/drivers/TestDriverPig.pm (original)
+++ pig/trunk/test/e2e/pig/drivers/TestDriverPig.pm Wed Apr 17 00:39:30 2013
@@ -875,7 +875,7 @@ sub compareSingleOutput
         print $log "Test output checksum does not match benchmark checksum\n";
         print $log "Test checksum = <$testChksm>\n";
         print $log "Expected checksum = <$benchmarkChksm>\n";
-        print $log "RESULTS DIFFER: vimdiff " . cwd . "/$testOutput " . cwd . "/$benchmarkOutput\n";
+        print $log "RESULTS DIFFER: vimdiff " . cwd . "/$testOutput $benchmarkOutput\n";
     } else {
         $result = 1;
     }