Repository: incubator-slider
Updated Branches:
  refs/heads/develop c91d5ecd3 -> 686fdff35


SLIDER-377: changing outcome if winutils.exe is not on the path


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/686fdff3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/686fdff3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/686fdff3

Branch: refs/heads/develop
Commit: 686fdff358a978fdc56240e82c045dfc5ae0a591
Parents: c91d5ec
Author: Steve Loughran <ste...@apache.org>
Authored: Fri Aug 29 17:54:21 2014 +0100
Committer: Steve Loughran <ste...@apache.org>
Committed: Fri Aug 29 17:54:21 2014 +0100

----------------------------------------------------------------------
 .../org/apache/slider/test/YarnMiniClusterTestBase.groovy     | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/686fdff3/slider-core/src/test/groovy/org/apache/slider/test/YarnMiniClusterTestBase.groovy
----------------------------------------------------------------------
diff --git 
a/slider-core/src/test/groovy/org/apache/slider/test/YarnMiniClusterTestBase.groovy
 
b/slider-core/src/test/groovy/org/apache/slider/test/YarnMiniClusterTestBase.groovy
index 5a091bf..5aef585 100644
--- 
a/slider-core/src/test/groovy/org/apache/slider/test/YarnMiniClusterTestBase.groovy
+++ 
b/slider-core/src/test/groovy/org/apache/slider/test/YarnMiniClusterTestBase.groovy
@@ -132,7 +132,12 @@ public abstract class YarnMiniClusterTestBase extends 
ServiceLauncherBaseTest {
   @BeforeClass
   public static void checkWindowsSupport() {
     if (Shell.WINDOWS) {
-      assertNotNull("winutils.exe not found", Shell.WINUTILS)
+//      assertNotNull("winutils.exe not found", Shell.WINUTILS)
+      if (!Shell.WINUTILS) {
+        log.error("winutils.exe not found")
+      }
+      def lib = System.getProperty("java.library.path")
+      log.debug("java.library.path = ${lib}")
     }
   } 
 

Reply via email to