diff options
author | Ryan Moeller <[email protected]> | 2020-02-12 16:06:00 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-12 13:06:00 -0800 |
commit | 610eec452d723bc53ce531095aff9577a2e0dc93 (patch) | |
tree | 3d469390682003ce92663ce31ea5f8192793989f /tests | |
parent | 834f274fbfa0642e62944784a06b0e184065bdf0 (diff) |
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 <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #9982
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runfiles/common.run | 4 | ||||
-rw-r--r-- | 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 74259acc2..dfdc5ee58 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 1be9dcdc5..7378f1aee 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'] |