diff --git common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java index c10c082..d8cdd57 100644 --- common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java +++ common/src/test/org/apache/hadoop/hive/conf/TestHiveLogging.java @@ -69,6 +69,7 @@ private void getCmdOutput(String logFile) throws Exception { new InputStreamReader(process.getInputStream())); String line = ""; while((line = buf.readLine()) != null) { + line = line.replace("//", "/"); if (line.equals(logFile)) { logCreated = true; }