CLOUDSTACK-4225: Remove additional / in the nfs path nfs://nfs-server://export/share -> nfs://nfs-server:/export/share
Signed-off-by: Prasanna Santhanam <[email protected]> (cherry picked from commit f056af8cbdd6bdfead0afbffbe2c10bb988ba385) Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/eeb53d52 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/eeb53d52 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/eeb53d52 Branch: refs/heads/master Commit: eeb53d52eebb98bd19c15d74ff888653cdd927d5 Parents: 69adeec Author: Prasanna Santhanam <[email protected]> Authored: Wed Aug 21 13:01:40 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Wed Aug 21 15:20:27 2013 +0530 ---------------------------------------------------------------------- test/integration/component/test_snapshot_gc.py | 2 +- test/integration/component/test_snapshot_limits.py | 2 +- test/integration/component/test_snapshots.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/eeb53d52/test/integration/component/test_snapshot_gc.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_snapshot_gc.py b/test/integration/component/test_snapshot_gc.py index 2300e45..3cd4194 100644 --- a/test/integration/component/test_snapshot_gc.py +++ b/test/integration/component/test_snapshot_gc.py @@ -257,7 +257,7 @@ class TestAccountSnapshotClean(cloudstackTestCase): cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], - "mount -t %s %s/%s %s" % ( + "mount -t %s %s%s %s" % ( 'nfs', host, path, http://git-wip-us.apache.org/repos/asf/cloudstack/blob/eeb53d52/test/integration/component/test_snapshot_limits.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_snapshot_limits.py b/test/integration/component/test_snapshot_limits.py index a530a04..1bc2798 100644 --- a/test/integration/component/test_snapshot_limits.py +++ b/test/integration/component/test_snapshot_limits.py @@ -245,7 +245,7 @@ class TestSnapshotLimit(cloudstackTestCase): cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], - "mount -t %s %s/%s %s" % ( + "mount -t %s %s%s %s" % ( 'nfs', host, path, http://git-wip-us.apache.org/repos/asf/cloudstack/blob/eeb53d52/test/integration/component/test_snapshots.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_snapshots.py b/test/integration/component/test_snapshots.py index 071702b..044e41a 100644 --- a/test/integration/component/test_snapshots.py +++ b/test/integration/component/test_snapshots.py @@ -238,7 +238,7 @@ class TestSnapshots(cloudstackTestCase): cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], - "mount -t %s %s/%s %s" % ( + "mount -t %s %s%s %s" % ( 'nfs', host, path, @@ -1043,7 +1043,7 @@ class TestCreateVMSnapshotTemplate(cloudstackTestCase): cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], - "mount -t %s %s/%s %s" % ( + "mount -t %s %s%s %s" % ( 'nfs', host, path,
