From afca5e4f690472555bacd184448f204d22915266 Mon Sep 17 00:00:00 2001 From: TapTap Date: Tue, 7 Jul 2026 18:55:47 +0200 Subject: [PATCH] test: expand SSH tests to all valid flag combinations --- test.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test.py b/test.py index 7243928..26a55b4 100755 --- a/test.py +++ b/test.py @@ -71,6 +71,11 @@ SSH_CASES = [ {"name": "SSH (localhost)", "flags": []}, {"name": "SSH Multithreading (-m)", "flags": ["-m"]}, {"name": "SSH Compression (-c)", "flags": ["-c"]}, + {"name": "SSH Chunk Serialization (-s)", "flags": ["-s"]}, + {"name": "SSH Compression + Chunk Serialization (-c -s)", "flags": ["-c", "-s"]}, + {"name": "SSH Multithreading + Compression (-m -c)", "flags": ["-m", "-c"]}, + {"name": "SSH Multithreading + Chunk Serialization (-m -s)", "flags": ["-m", "-s"]}, + {"name": "SSH Multithreading + Compression + Chunk Serialization (-m -c -s)", "flags": ["-m", "-c", "-s"]}, ] RSYNC_CASES = [