summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2014-12-18 09:08:54 +0100
committerMartin Pitt <martin.pitt@ubuntu.com>2014-12-18 09:08:54 +0100
commitaf447f1b326be61736ffcf98d95cd84b4b1bc2c3 (patch)
treec1e68e1b3ef61c7d5df1ab30871e11939b984ae4
parentf43fa6345cb30dca92245774a88d60ba7feec6c9 (diff)
integration-test: Fix btrfs test
Recent mkfs.btrfs now requires -f to overwrite an existing file system.
-rwxr-xr-xsrc/tests/integration-test1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/integration-test b/src/tests/integration-test
index 2e45d5f..6aeebf8 100755
--- a/src/tests/integration-test
+++ b/src/tests/integration-test
@@ -288,6 +288,7 @@ class UDisksTestCase(unittest.TestCase):
'ext3': ['-F'],
'ext4': ['-F'],
'ntfs': ['-F'],
+ 'btrfs': ['-f'],
'reiserfs': ['-ff']}
cmd = [mkcmd.get(type, 'mkfs.' + type)] + extra_opt.get(type, [])