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/05 09:10:18 UTC

svn commit: r1538901 - /hive/branches/tez/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java

Author: gunther
Date: Tue Nov  5 08:10:18 2013
New Revision: 1538901

URL: http://svn.apache.org/r1538901
Log:
HIVE-5745: TestHiveLogging is failing (at least on mac). (Gunther Hagleitner)

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

Modified: hive/branches/tez/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java
URL: http://svn.apache.org/viewvc/hive/branches/tez/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java?rev=1538901&r1=1538900&r2=1538901&view=diff
==============================================================================
--- hive/branches/tez/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java (original)
+++ hive/branches/tez/common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java Tue Nov  5 08:10:18 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;
       }