Repository: incubator-slider Updated Branches: refs/heads/develop 8062780eb -> 9900d7b31
SLIDER-901 AgentClientInstallIT#testAgentClientInstall last validation statement is failing on Windows (Thomas Liu via gourksaha) Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/9900d7b3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/9900d7b3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/9900d7b3 Branch: refs/heads/develop Commit: 9900d7b31f036452e44ce8ad8fc08011f0a3477c Parents: 8062780 Author: Gour Saha <[email protected]> Authored: Sun Jun 14 10:47:11 2015 -0700 Committer: Gour Saha <[email protected]> Committed: Sun Jun 14 10:47:11 2015 -0700 ---------------------------------------------------------------------- .../apache/slider/funtest/lifecycle/AgentClientInstallIT.groovy | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/9900d7b3/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/AgentClientInstallIT.groovy ---------------------------------------------------------------------- diff --git a/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/AgentClientInstallIT.groovy b/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/AgentClientInstallIT.groovy index d5285e5..deb2d97 100644 --- a/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/AgentClientInstallIT.groovy +++ b/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/AgentClientInstallIT.groovy @@ -44,7 +44,7 @@ public class AgentClientInstallIT extends AgentCommandTestBase @Test public void testAgentClientInstall() throws Throwable { - + assumeNotWindows() describe "Install command logger client" File zipFileName = new File(TEST_APP_PKG_DIR, TEST_APP_PKG_FILE).canonicalFile File tmpFile = File.createTempFile("del", ""); @@ -74,7 +74,6 @@ public class AgentClientInstallIT extends AgentCommandTestBase String expectedFile2 = new File(new File(dest, "command-logger-app"), "operations.log").toString(); assert list.contains(expectedFile1) - //TODO to fix in SLIDER-901 - //assert list.contains(expectedFile2) + assert list.contains(expectedFile2) } }
