Repository: cloudstack Updated Branches: refs/heads/4.4 4901cc535 -> 5fe568d5c
now fix MY root resize test, which passes 0 in one test... Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5fe568d5 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5fe568d5 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5fe568d5 Branch: refs/heads/4.4 Commit: 5fe568d5cf435484945d58c8da17f0f815f123f8 Parents: 4901cc5 Author: Marcus Sorensen <[email protected]> Authored: Fri Mar 14 07:40:12 2014 -0600 Committer: Marcus Sorensen <[email protected]> Committed: Fri Mar 14 07:40:56 2014 -0600 ---------------------------------------------------------------------- tools/marvin/marvin/integration/lib/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5fe568d5/tools/marvin/marvin/integration/lib/base.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index 38e8568..775b289 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -424,7 +424,7 @@ class VirtualMachine: if custommemory: cmd.details[0]["memory"] = custommemory - if rootdisksize: + if rootdisksize >= 0: cmd.details[0]["rootdisksize"] = rootdisksize if group:
