aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-08-05 12:06:24 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-08-05 12:06:24 +0100
commitefc6741a48af59f6425ad6aeb7d9188a889dad3c (patch)
tree4224e66230f5f027cf9c936adddc82f56d62601c /tools/xm-test
parentf275a935a26169a69969b04ba268885ca028c54b (diff)
downloadxen-efc6741a48af59f6425ad6aeb7d9188a889dad3c.tar.gz
xen-efc6741a48af59f6425ad6aeb7d9188a889dad3c.tar.bz2
xen-efc6741a48af59f6425ad6aeb7d9188a889dad3c.zip
xm-test block-create: use ext3 as filesystem
The current implementation uses ext2 for tests. The tests currently fail, because the current kernel does not support ext2 by default. This patch creates an ext3 filesystem for the tests. Signed-off-by: Andreas Florath <xen@flonatel.org>
Diffstat (limited to 'tools/xm-test')
-rw-r--r--tools/xm-test/tests/block-create/09_block_attach_and_dettach_device_check_data_pos.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/xm-test/tests/block-create/09_block_attach_and_dettach_device_check_data_pos.py b/tools/xm-test/tests/block-create/09_block_attach_and_dettach_device_check_data_pos.py
index b97b70c499..9ac635ac0f 100644
--- a/tools/xm-test/tests/block-create/09_block_attach_and_dettach_device_check_data_pos.py
+++ b/tools/xm-test/tests/block-create/09_block_attach_and_dettach_device_check_data_pos.py
@@ -1,7 +1,9 @@
#!/usr/bin/python
# Copyright (C) International Business Machines Corp., 2005
-# Author: Murillo F. Bernardes <mfb@br.ibm.com>
+# Copyright (C) flonatel GmbH & Co. KG, 2009
+# Authors: Murillo F. Bernardes <mfb@br.ibm.com>
+# Andreas Florath <xen@flonatel.org>
import re
@@ -30,7 +32,7 @@ except ConsoleError, e:
saveLog(console.getHistory())
FAIL(str(e))
-s, o = traceCommand("mke2fs -q -F /dev/ram1")
+s, o = traceCommand("mke2fs -j -q -F /dev/ram1")
if s != 0:
FAIL("mke2fs returned %i != 0" % s)