Repository: cloudstack Updated Branches: refs/heads/master 345fc3c8e -> 8fc6e263b
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/8fc6e263 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/8fc6e263 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/8fc6e263 Branch: refs/heads/master Commit: 8fc6e263b3510b2affdd117b45fe60581d69f545 Parents: 345fc3c 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:12 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/8fc6e263/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:
