ZTS: Move tmpfile tests to linux.run

O_TMPFILE is not available on FreeBSD.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #9503
This commit is contained in:
Ryan Moeller 2019-10-24 13:49:19 -04:00 committed by Brian Behlendorf
parent 4c6225b688
commit 28f7427ab1
3 changed files with 9 additions and 5 deletions

View File

@ -836,10 +836,6 @@ tags = ['functional', 'suid']
tests = ['threadsappend_001_pos']
tags = ['functional', 'threadsappend']
[tests/functional/tmpfile]
tests = ['tmpfile_001_pos', 'tmpfile_002_pos', 'tmpfile_003_pos']
tags = ['functional', 'tmpfile']
[tests/functional/trim]
tests = ['autotrim_integrity', 'autotrim_config', 'autotrim_trim_integrity',
'trim_integrity', 'trim_config']

View File

@ -101,6 +101,10 @@ tags = ['functional', 'rsend']
tests = ['snapshot_015_pos', 'snapshot_016_pos']
tags = ['functional', 'snapshot']
[tests/functional/tmpfile:Linux]
tests = ['tmpfile_001_pos', 'tmpfile_002_pos', 'tmpfile_003_pos']
tags = ['functional', 'tmpfile']
[tests/functional/upgrade:Linux]
tests = ['upgrade_projectquota_001_pos']
tags = ['functional', 'upgrade']

View File

@ -70,7 +70,6 @@ SUBDIRS = \
sparse \
suid \
threadsappend \
tmpfile \
trim \
truncate \
upgrade \
@ -80,3 +79,8 @@ SUBDIRS = \
write_dirs \
xattr \
zvol
if BUILD_LINUX
SUBDIRS += \
tmpfile
endif