You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2013/07/25 15:48:51 UTC

git commit: updated refs/heads/4.2 to 81dfaaa

Updated Branches:
  refs/heads/4.2 f4e928260 -> 81dfaaa90


For some reason cat is under /bin on some linuses

Signed-off-by: Prasanna Santhanam <ts...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/81dfaaa9
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/81dfaaa9
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/81dfaaa9

Branch: refs/heads/4.2
Commit: 81dfaaa901ebc677a4eff93e0ecf05bc4b3cc701
Parents: f4e9282
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Thu Jul 25 19:13:01 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Thu Jul 25 19:18:41 2013 +0530

----------------------------------------------------------------------
 utils/test/com/cloud/utils/ScriptTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/81dfaaa9/utils/test/com/cloud/utils/ScriptTest.java
----------------------------------------------------------------------
diff --git a/utils/test/com/cloud/utils/ScriptTest.java b/utils/test/com/cloud/utils/ScriptTest.java
index f10f3bc..bc0875d 100644
--- a/utils/test/com/cloud/utils/ScriptTest.java
+++ b/utils/test/com/cloud/utils/ScriptTest.java
@@ -94,7 +94,7 @@ public class ScriptTest {
     @Test
     public void testFindScript() {
         Assume.assumeTrue(SystemUtils.IS_OS_LINUX);
-        String script = Script.findScript("/usr/bin", "cat");
-        Assert.assertNotNull("/usr/bin/cat shoud be there on linux",script);
+        String script = Script.findScript("/bin", "pwd");
+        Assert.assertNotNull("/bin/pwd shoud be there on linux",script);
     }
 }