Commit 077b9c95 authored by Pavel Emelyanov's avatar Pavel Emelyanov

zdtm.py: Fix argumeps to uns flavor init

Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent fffbe374
......@@ -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 }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment