From 19ae737cb9722bf93f88a13eae2ca335c9885d0b Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Tue, 8 Nov 2016 07:38:21 +0300 Subject: [PATCH] zdtm: Handle --external option in RPC Travis sets up the GCOV variable to collect coverage and provides an external mount for this. Thus handling this option in RPC mode is essential. travis-ci: success for tests: Add RPC testing to CI (rev2) Acked-by: Andrey Vagin Signed-off-by: Pavel Emelyanov --- test/zdtm.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/zdtm.py b/test/zdtm.py index 2093a926b..f8f409f76 100755 --- a/test/zdtm.py +++ b/test/zdtm.py @@ -713,6 +713,9 @@ class criu_rpc: if arg == '--root': criu.opts.root = args.pop(0) continue + if arg == '--external': + criu.opts.external.append(args.pop(0)) + continue raise test_fail_exc('RPC for %s required' % arg)