24 quiet = False
  25 timeout = 60
  26 post =
  27 outputdir = /var/tmp/test_results
  28 
  29 [/opt/os-tests/tests/poll]
  30 user = root
  31 tests = ['poll_test', 'epoll_test']
  32 
  33 [/opt/os-tests/tests/eventfd.32]
  34 [/opt/os-tests/tests/eventfd.64]
  35 
  36 [/opt/os-tests/tests/odirectory.32]
  37 [/opt/os-tests/tests/odirectory.64]
  38 
  39 [/opt/os-tests/tests/clock_gettime.32]
  40 [/opt/os-tests/tests/clock_gettime.64]
  41 
  42 [/opt/os-tests/tests/ucontext.32]
  43 [/opt/os-tests/tests/ucontext.64]
  44 
  45 [/opt/os-tests/tests/secflags]
  46 user = root
  47 tests = ['secflags_aslr',
  48          'secflags_core',
  49          'secflags_dts',
  50          'secflags_elfdump',
  51          'secflags_forbidnullmap',
  52          'secflags_limits',
  53          'secflags_noexecstack',
  54          'secflags_proc',
  55          'secflags_psecflags',
  56          'secflags_syscall',
  57          'secflags_truss',
  58          'secflags_zonecfg']
  59 
  60 [/opt/os-tests/tests/signalfd]
  61 tests = ['basic_args', 'basic_read', 'multipoll']
  62 
  63 [/opt/os-tests/tests/sigqueue]
 
 
 142 post = ksensor_fini
 143 
 144 [/opt/os-tests/tests/stackalign]
 145 tests = ['stackalign.32', 'stackalign.64']
 146 
 147 [/opt/os-tests/tests/cores]
 148 user = root
 149 pre = core_prereqs
 150 tests = ['coretests']
 151 
 152 [/opt/os-tests/tests/zen_umc_test]
 153 
 154 [/opt/os-tests/tests/portfs]
 155 tests = ['file_assoc.32', 'file_assoc.64']
 156 
 157 [/opt/os-tests/tests/regression]
 158 tests = [
 159         'illumos-15031',
 160         'illumos-15036'
 161         ]
  | 
 
 
  24 quiet = False
  25 timeout = 60
  26 post =
  27 outputdir = /var/tmp/test_results
  28 
  29 [/opt/os-tests/tests/poll]
  30 user = root
  31 tests = ['poll_test', 'epoll_test']
  32 
  33 [/opt/os-tests/tests/eventfd.32]
  34 [/opt/os-tests/tests/eventfd.64]
  35 
  36 [/opt/os-tests/tests/odirectory.32]
  37 [/opt/os-tests/tests/odirectory.64]
  38 
  39 [/opt/os-tests/tests/clock_gettime.32]
  40 [/opt/os-tests/tests/clock_gettime.64]
  41 
  42 [/opt/os-tests/tests/ucontext.32]
  43 [/opt/os-tests/tests/ucontext.64]
  44 [/opt/os-tests/tests/getcontext_extd.32]
  45 [/opt/os-tests/tests/getcontext_extd.64]
  46 
  47 [/opt/os-tests/tests/secflags]
  48 user = root
  49 tests = ['secflags_aslr',
  50          'secflags_core',
  51          'secflags_dts',
  52          'secflags_elfdump',
  53          'secflags_forbidnullmap',
  54          'secflags_limits',
  55          'secflags_noexecstack',
  56          'secflags_proc',
  57          'secflags_psecflags',
  58          'secflags_syscall',
  59          'secflags_truss',
  60          'secflags_zonecfg']
  61 
  62 [/opt/os-tests/tests/signalfd]
  63 tests = ['basic_args', 'basic_read', 'multipoll']
  64 
  65 [/opt/os-tests/tests/sigqueue]
 
 
 144 post = ksensor_fini
 145 
 146 [/opt/os-tests/tests/stackalign]
 147 tests = ['stackalign.32', 'stackalign.64']
 148 
 149 [/opt/os-tests/tests/cores]
 150 user = root
 151 pre = core_prereqs
 152 tests = ['coretests']
 153 
 154 [/opt/os-tests/tests/zen_umc_test]
 155 
 156 [/opt/os-tests/tests/portfs]
 157 tests = ['file_assoc.32', 'file_assoc.64']
 158 
 159 [/opt/os-tests/tests/regression]
 160 tests = [
 161         'illumos-15031',
 162         'illumos-15036'
 163         ]
 164 
 165 #
 166 # The following tests all represent tests that require the xsave feature
 167 # set. These are all x86 specific. The use of arch=i86pc below doesn't
 168 # really represent things that can be run on x86 regardless of the
 169 # platform and when the test runner gains support for specifying that,
 170 # use that instead. This would be split into two groups, but that isn't
 171 # supported, so everything ends up being run as root for the sake of the
 172 # xsave_baducontext test.
 173 #
 174 [/opt/os-tests/tests/xsave]
 175 arch = i86pc
 176 pre = xsu_hwtype.64
 177 user = root
 178 tests = [ 'bad_xregs.32', 'bad_xregs.64', 'mdb_xregs', 'proc_writes',
 179     'setcontext_replace.32', 'setcontext_replace.64', 'setcontext_restore.32',
 180     'setcontext_restore.64', 'signal_restore.32', 'signal_restore.64',
 181     'xregs_roundtrip.32', 'xregs_roundtrip.64', 'xsave_baducontext',
 182     'fpregs_xbv.32', 'fpregs_xbv.64', 'swapcontext_extd.32',
 183     'swapcontext_extd.64' ]
  |