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