From 2139c955ed1fe4d1f4d2d6d746504bb425d573bc Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Fri, 6 Apr 2018 10:21:12 +0300 Subject: [PATCH] zdtm: handle --tcp-established in the rpc mode Signed-off-by: Andrei Vagin --- test/zdtm.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/zdtm.py b/test/zdtm.py index ce8b3b9c5..850db9d36 100755 --- a/test/zdtm.py +++ b/test/zdtm.py @@ -758,6 +758,9 @@ class criu_rpc: if arg == '--track-mem': criu.opts.track_mem = True continue + if arg == '--tcp-established': + criu.opts.tcp_established = True + continue raise test_fail_exc('RPC for %s required' % arg)