summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2023-03-26 01:50:00 +0900
committerRyo Nakamura <upa@haeena.net>2023-03-26 01:50:00 +0900
commit1bd832a135d027243c0b0c1ea5a740f82d429cd1 (patch)
tree0a2fd63ec04cd22fce6992cb2f5d6651dd12e5d7 /test
parent834407379dfe4a3205259f08a02259458b6a6401 (diff)
parent6be61e8adff9690fd2d0cc943a1ac63939b5f0d8 (diff)
Merge branch 'main' of github.com:upa/mscp
Diffstat (limited to 'test')
-rw-r--r--test/test_e2e.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_e2e.py b/test/test_e2e.py
index 521992e..31d9b44 100644
--- a/test/test_e2e.py
+++ b/test/test_e2e.py
@@ -144,7 +144,7 @@ def test_min_chunk(mscp, src_prefix, dst_prefix):
src = File("src", size = 16 * 1024).make()
dst = File("dst")
- run2ok([mscp, "-H", "-s", 8192, src_prefix + src.path, dst_prefix + dst.path])
+ run2ok([mscp, "-H", "-s", 32768, src_prefix + src.path, dst_prefix + dst.path])
assert check_same_md5sum(src, dst)
src.cleanup()
@@ -155,7 +155,7 @@ def test_thread_affinity(mscp, src_prefix, dst_prefix):
src = File("src", size = 64 * 1024).make()
dst = File("dst")
- run2ok([mscp, "-H", "-n", 4, "-m", "0x01", "-s", 8192, "-S", 65536,
+ run2ok([mscp, "-H", "-n", 4, "-m", "0x01",
src_prefix + src.path, dst_prefix + dst.path])
assert check_same_md5sum(src, dst)