You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by gu...@apache.org on 2013/11/09 06:18:00 UTC

svn commit: r1540254 - /hive/trunk/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java

Author: gunther
Date: Sat Nov  9 05:18:00 2013
New Revision: 1540254

URL: http://svn.apache.org/r1540254
Log:
HIVE-5745: TestHiveLogging is failing (at least on mac) (Gunther Hagleitner, reviewed by Ashutosh Chauhan)

Modified:
    hive/trunk/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java

Modified: hive/trunk/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java
URL: http://svn.apache.org/viewvc/hive/trunk/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java?rev=1540254&r1=1540253&r2=1540254&view=diff
==============================================================================
--- hive/trunk/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java (original)
+++ hive/trunk/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java Sat Nov  9 05:18:00 2013
@@ -69,6 +69,7 @@ public class TestHiveLogging extends Tes
       new InputStreamReader(process.getInputStream()));
     String line = "";
     while((line = buf.readLine()) != null) {
+      line = line.replace("//", "/");
       if (line.equals(logFile)) {
         logCreated = true;
       }