Skip to content

Commit

Permalink
test/criu: enable external ipc,uts,time namespaces
Browse files Browse the repository at this point in the history
Signed-off-by: Radostin Stoyanov <[email protected]>
  • Loading branch information
rst0git committed Oct 5, 2021
1 parent 24e6e77 commit c58b989
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_checkpoint_restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ def test_cr_with_ext_ns():
ns.update({'path': os.path.join(ns_path, 'pid')})
if ns['type'] == 'network':
ns.update({'path': os.path.join(ns_path, 'net')})
if ns['type'] == 'ipc':
ns.update({'path': os.path.join(ns_path, 'ipc')})
if ns['type'] == 'uts':
ns.update({'path': os.path.join(ns_path, 'uts')})
if ns['type'] == 'time':
ns.update({'path': os.path.join(ns_path, 'time')})

return run_cr_test(conf)

Expand Down

0 comments on commit c58b989

Please sign in to comment.