From 077b9c959c70a21242c39ed955eed36598f11a9c Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Wed, 28 Oct 2015 17:05:05 +0300 Subject: [PATCH] zdtm.py: Fix argumeps to uns flavor init Signed-off-by: Pavel Emelyanov --- test/zdtm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/zdtm.py b/test/zdtm.py index 246728afd..0d0d4737f 100755 --- a/test/zdtm.py +++ b/test/zdtm.py @@ -138,10 +138,10 @@ class userns_flavor(ns_flavor): self.name = "userns" self.uns = True - def init(self, test_bin): + def init(self, test_bin, deps): # To be able to create roots_yard in CRIU os.chmod(".", os.stat(".").st_mode | 0077) - ns_flavor.init(self, test_bin) + ns_flavor.init(self, test_bin, deps) flavors = { 'h': host_flavor, 'ns': ns_flavor, 'uns': userns_flavor }