summaryrefslogtreecommitdiff
path: root/test/test_e2e.py
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2023-03-22 18:00:52 +0900
committerRyo Nakamura <upa@haeena.net>2023-03-22 18:00:52 +0900
commit3f00bd2c7b89ff9df71c2e489cd9929c3d0627e4 (patch)
tree7012bc092d780d0000217f8a57fe73e81fbf9ecb /test/test_e2e.py
parent5ac087462106206b884f4d0a4f5dec0b630156ef (diff)
test: set min_chunk_sz to 32768 on test_min_chunk
Page size of arm mac is 16384.
Diffstat (limited to 'test/test_e2e.py')
-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 018be96..9c98247 100644
--- a/test/test_e2e.py
+++ b/test/test_e2e.py
@@ -139,7 +139,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()
@@ -150,7 +150,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)