1############################################################################## 2# unittest configuration 3# 4# [unittest_name] 5# file = <name>.elf # Name of the elf file to be used. 6# extra_params = -append <params...> # Additional parameters used. 7# groups = <group_name1> <group_name2> ... # Used to identify test cases 8# # with run_tests -g ... 9# # Specify group_name=nodefault 10# # to have test not run by default 11# accel = kvm|tcg # Optionally specify if test must run with 12# # kvm or tcg. If not specified, then kvm will 13# # be used when available. 14# timeout = <duration> # Optionally specify a timeout. 15# check = <path>=<value> # check a file for a particular value before running 16# # a test. The check line can contain multiple files 17# # to check separated by a space but each check 18# # parameter needs to be of the form <path>=<value> 19############################################################################## 20 21[selftest-setup] 22file = selftest.elf 23groups = selftest 24extra_params = -append 'test 123' 25 26[intercept] 27file = intercept.elf 28 29[emulator] 30file = emulator.elf 31 32[sieve] 33file = sieve.elf 34groups = selftest 35# can take fairly long when KVM is nested inside z/VM 36timeout = 600 37 38[sthyi] 39file = sthyi.elf 40 41[skey] 42file = skey.elf 43 44[diag10] 45file = diag10.elf 46 47[diag308] 48file = diag308.elf 49 50[pfmf] 51file = pfmf.elf 52 53[cmm] 54file = cmm.elf 55 56[vector] 57file = vector.elf 58 59[gs] 60file = gs.elf 61 62[iep] 63file = iep.elf 64 65[cpumodel] 66file = cpumodel.elf 67 68[diag288] 69file = diag288.elf 70extra_params=-device diag288,id=watchdog0 --watchdog-action inject-nmi 71 72[stsi] 73file = stsi.elf 74 75[smp] 76file = smp.elf 77extra_params =-smp 2 78