aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-08-20 16:19:01 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-08-20 16:19:01 +0100
commitd453aec3e0767d3b5239bef1b53bc04e06770515 (patch)
tree9a91ea5a2272ac432c79b2cf0f3fc56984af61a8 /tools/xm-test
parentfee98528eaa50c2e554916b9b70795e06b18fbe4 (diff)
downloadxen-d453aec3e0767d3b5239bef1b53bc04e06770515.tar.gz
xen-d453aec3e0767d3b5239bef1b53bc04e06770515.tar.bz2
xen-d453aec3e0767d3b5239bef1b53bc04e06770515.zip
xm-test: Fix testcase '11_block_attach_shared_dom0' for up-to date
linux kernels New kernels have ext2 disabled by default. This fix uses ext3 for testcase 11_block_attach_shared_dom0. Signed-off-by: Andreas Florath <xen@flonatel.org>
Diffstat (limited to 'tools/xm-test')
-rw-r--r--tools/xm-test/tests/block-create/11_block_attach_shared_dom0.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xm-test/tests/block-create/11_block_attach_shared_dom0.py b/tools/xm-test/tests/block-create/11_block_attach_shared_dom0.py
index 1b8a289394..f93b8a1cb8 100644
--- a/tools/xm-test/tests/block-create/11_block_attach_shared_dom0.py
+++ b/tools/xm-test/tests/block-create/11_block_attach_shared_dom0.py
@@ -10,9 +10,9 @@ if ENABLE_HVM_SUPPORT:
# Mount /dev/ram0
-s, o = traceCommand("mkfs /dev/ram0")
+s, o = traceCommand("mkfs -j /dev/ram0")
if s != 0:
- FAIL("Unable to mkfs /dev/ram0")
+ FAIL("Unable to mkfs -j /dev/ram0")
s, o = traceCommand("mkdir -p mnt");
if s != 0: