From 610eec452d723bc53ce531095aff9577a2e0dc93 Mon Sep 17 00:00:00 2001 From: Ryan Moeller Date: Wed, 12 Feb 2020 16:06:00 -0500 Subject: [PATCH] ZTS: Move user_namespace test to linux.run Namespaces is a Linux feature not available on other platforms. Move the user_namespace test out of common.run to linux.run. Reviewed-by: Igor Kozhukhov Reviewed-by: Brian Behlendorf Signed-off-by: Ryan Moeller Closes #9982 --- tests/runfiles/common.run | 4 ---- tests/runfiles/linux.run | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/runfiles/common.run b/tests/runfiles/common.run index 74259acc25..dfdc5ee58a 100644 --- a/tests/runfiles/common.run +++ b/tests/runfiles/common.run @@ -825,10 +825,6 @@ tags = ['functional', 'truncate'] tests = ['upgrade_userobj_001_pos', 'upgrade_readonly_pool'] tags = ['functional', 'upgrade'] -[tests/functional/user_namespace] -tests = ['user_namespace_001'] -tags = ['functional', 'user_namespace'] - [tests/functional/userquota] tests = [ 'userquota_001_pos', 'userquota_002_pos', 'userquota_003_pos', diff --git a/tests/runfiles/linux.run b/tests/runfiles/linux.run index 1be9dcdc55..7378f1aee2 100644 --- a/tests/runfiles/linux.run +++ b/tests/runfiles/linux.run @@ -159,6 +159,10 @@ tags = ['functional', 'tmpfile'] tests = ['upgrade_projectquota_001_pos'] tags = ['functional', 'upgrade'] +[tests/functional/user_namespace:Linux] +tests = ['user_namespace_001'] +tags = ['functional', 'user_namespace'] + [tests/functional/userquota:Linux] tests = ['groupspace_001_pos', 'groupspace_002_pos', 'groupspace_003_pos', 'userquota_013_pos', 'userspace_003_pos']