1# Repeation of test. 2ITERATION=1 3 4# Vmcore verification using crash command. 5# Require kernel-debuginfo and crash packages. 6CRASH=0 7 8# Reboot count. New test should start from 0. 9REBOOT=0 10 11# Kernel debuginfo. 12VMLINUX="/usr/lib/debug/lib/modules/$(uname -r)/vmlinux" 13 14# Where vmcore will be saved. 15# /var/crash for Red Hat. 16# /var/log/dump for SUSE. 17COREDIR=/var/log/dump 18 19# Enable dump with filtering. 20FILTER=0 21# makedumpfile options. 22MAKE_OPTIONS= 23 24# Delay in seconds when dumping to a network destination. 25LINK_DELAY= 26 27# The list of testcases. Please see doc for the overview of 28# those tests. 29 30# ACS ACP ACB ACE ACL 31CRASHER="ACS ACP ACB ACE ACL" 32 33# KPIDB KPIEB KPTEE KPBL 34BASIC_LKDTM="KPIDB KPIEB KPTEE KPBL" 35 36# KPIDE KPIDL KPIDP KPIDO 37# KPIEE KPIEL KPIEP KPIEO 38# KPTEB KPTEL KPTEP KPTEO 39# KPBB KPBE KPBP KPBO 40# KPMSB KPMSE KPMSL KPMSP KPMSO 41# KPTB KPTE KPTL KPTP KPTO 42# KPSB KPSE KPSL KPSP KPSO 43# KPIB KPIE KPIL KPIP KPIO 44EXTRA_LKDTM=" 45KPIDE KPIDL KPIDP KPIDO 46KPIEE KPIEL KPIEP KPIEO 47KPTEB KPTEL KPTEP KPTEO 48KPBB KPBE KPBP KPBO 49KPMSB KPMSE KPMSL KPMSP KPMSO 50KPTB KPTE KPTL KPTP KPTO 51KPSB KPSE KPSL KPSP KPSO 52KPIB KPIE KPIL KPIP KPIO 53" 54 55# KLEXT KLLBL KLUID KLRAW KNSCP KNNFS KDENB 56EXTRA_DUMP="KLEXT KLLBL KLUID KLRAW KNSCP KNNFS KDENB" 57 58# Dump vmcore on an EXT3 partition. 59EXT3_PART= 60 61# Dump vmcore on an EXT3 partition with a LABEL. 62EXT3_LABEL= 63 64# Dump vmcore on an EXT3 partition with a partition UID. 65EXT3_UID= 66 67# Dump vmcore on a RAW partition. 68RAW_PART= 69 70# Dump vmcore on network. 71SCP_PATH= 72# Password for user@server. 73SCP_PASS= 74 75# Dump vmcore on a mounted NFS filesystem. 76NFS_PATH= 77