You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2014/11/04 00:45:08 UTC

git commit: Minor fix to balloon framework test.

Repository: mesos
Updated Branches:
  refs/heads/master 0756d185a -> a425e0037


Minor fix to balloon framework test.


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

Branch: refs/heads/master
Commit: a425e0037a30d17f1acec9c41ec41c4b42615b20
Parents: 0756d18
Author: Vinod Kone <vi...@gmail.com>
Authored: Mon Nov 3 15:44:43 2014 -0800
Committer: Vinod Kone <vi...@gmail.com>
Committed: Mon Nov 3 15:44:43 2014 -0800

----------------------------------------------------------------------
 src/tests/balloon_framework_test.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/a425e003/src/tests/balloon_framework_test.sh
----------------------------------------------------------------------
diff --git a/src/tests/balloon_framework_test.sh b/src/tests/balloon_framework_test.sh
index eb18b89..25a19cf 100755
--- a/src/tests/balloon_framework_test.sh
+++ b/src/tests/balloon_framework_test.sh
@@ -44,7 +44,7 @@ function cleanup() {
   fi
 
   # Make sure we cleanup any cgroups we created on exiting.
-  find ${TEST_CGROUP_HIERARCHY}/${TEST_CGROUP_ROOT} -mindepth 1 -depth -type d | xargs -r rmdir
+  find ${TEST_CGROUP_HIERARCHY}/*/${TEST_CGROUP_ROOT} -mindepth 1 -depth -type d | xargs -r rmdir
 
   # Make sure we cleanup the hierarchy, if we created it.
   # NOTE: We do a sleep here, to ensure the hierarchy is not busy.