aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-07 21:08:40 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-08 21:26:36 -0700
commit97f4a9cb4fc69be5c3b4d7631ebe20355bdc83dc (patch)
treea8575cf3f00cf10ec0a6bd0e591fabe1a697c5e5 /test
parent2680c5b9951b022351dd698b1ba21e965355ad16 (diff)
Removed ``-o big_writes`` option
This option is obsolete and should always be enabled. File systems that want to limit the size of write requests should use the ``-o max_write=<N>`` option instead.
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_examples.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_examples.py b/test/test_examples.py
index 3f8892b..226835f 100755
--- a/test/test_examples.py
+++ b/test/test_examples.py
@@ -28,7 +28,7 @@ def name_generator(__ctr=[0]):
return 'testfile_%d' % __ctr[0]
LL_OPTIONS = [ ['-o', 'splice_move,splice_write,splice_read' ],
- ['-o', 'clone_fd,big_writes,writeback_cache' ] ]
+ ['-o', 'clone_fd,writeback_cache' ] ]
@pytest.mark.parametrize("name", ('hello', 'hello_ll'))
@pytest.mark.parametrize("options", LL_OPTIONS)