You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by ju...@apache.org on 2017/01/10 19:15:45 UTC

reef git commit: [REEF-1693] Remove reading local logs from .NET Yarn tests

Repository: reef
Updated Branches:
  refs/heads/master 433f449dc -> 3b5a60a6c


[REEF-1693] Remove reading local logs from .NET Yarn tests

JIRA:
  [REEF-1693](https://issues.apache.org/jira/browse/REEF-1693)

Pull request:
  This closes #1211


Project: http://git-wip-us.apache.org/repos/asf/reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/3b5a60a6
Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/3b5a60a6
Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/3b5a60a6

Branch: refs/heads/master
Commit: 3b5a60a6cfc02d19af7ff5fdcad94d0bac6d6447
Parents: 433f449
Author: Mariia Mykhailova <ma...@apache.org>
Authored: Fri Jan 6 14:33:28 2017 -0800
Committer: Julia Wang <ju...@apache.org>
Committed: Tue Jan 10 11:11:27 2017 -0800

----------------------------------------------------------------------
 .../Functional/Bridge/TestBridgeClient.cs                      | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/3b5a60a6/lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs
----------------------------------------------------------------------
diff --git a/lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs b/lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs
index 1a11af6..be6bfc1 100644
--- a/lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs
+++ b/lang/cs/Org.Apache.REEF.Tests/Functional/Bridge/TestBridgeClient.cs
@@ -45,6 +45,8 @@ namespace Org.Apache.REEF.Tests.Functional.Bridge
         {
             string testRuntimeFolder = DefaultRuntimeFolder + TestId;
             await RunClrBridgeClient(false, testRuntimeFolder);
+            ValidateSuccessForLocalRuntime(2, testFolder: testRuntimeFolder);
+            CleanUp(testRuntimeFolder);
         }
 
         private async Task RunClrBridgeClient(bool runOnYarn, string testRuntimeFolder)
@@ -58,10 +60,6 @@ namespace Org.Apache.REEF.Tests.Functional.Bridge
             Assert.True(strStatus.Equals("Byte array returned from HelloHttpHandler in CLR!!!\r\n"));
 
             await((JobSubmissionResult)driverHttpEndpoint).TryUntilNoConnection(uri);
-
-            ValidateSuccessForLocalRuntime(2, testFolder: testRuntimeFolder);
-
-            CleanUp(testRuntimeFolder);
         }
     }
 }