Run the CPU HOTPLUG tests through runalltests.sh. Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>.
diff --git a/README b/README
index 16558ae..673127f 100644
--- a/README
+++ b/README
@@ -222,4 +222,23 @@
 CONFIG_HIBERNATION=y
 CONFIG_KEXEC_JUMP=y
 ---------------------------------
+Enabling HOTPLUG for your Kernels
+---------------------------------
+CONFIG_HOTPLUG=y
+CONFIG_HOTPLUG_CPU=y
+CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
+CONFIG_ACPI_HOTPLUG_CPU=y
+CONFIG_HOTPLUG_PCI_PCIE=y
+CONFIG_HOTPLUG_PCI=y
+CONFIG_HOTPLUG_PCI_FAKE=y
+CONFIG_HOTPLUG_PCI_COMPAQ=y
+CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y
+CONFIG_HOTPLUG_PCI_IBM=y
+CONFIG_HOTPLUG_PCI_ACPI=y
+CONFIG_HOTPLUG_PCI_ACPI_IBM=y
+CONFIG_HOTPLUG_PCI_CPCI=y
+CONFIG_HOTPLUG_PCI_CPCI_ZT5550=y
+CONFIG_HOTPLUG_PCI_CPCI_GENERIC=y
+CONFIG_HOTPLUG_PCI_SHPC=y
+---------------------------------
 ---------------------------------
diff --git a/runalltests.sh b/runalltests.sh
index a62e1d5..a64b613 100755
--- a/runalltests.sh
+++ b/runalltests.sh
@@ -75,6 +75,9 @@
 ## Make sure you have CD inserted in your CD-ROM drive,
 export RUN_STRESS_CD=0
 
+##Set this to 1 if you wish to runthe CPUHOTPLUG tests
+export RUN_CPU_HOTPLUG=0
+
 export LTP_VERSION=`./runltp -e`
 export TEST_START_TIME=`date +"%Y_%b_%d-%Hh_%Mm_%Ss"`
 export HARDWARE_TYPE=$(uname -i)
@@ -248,3 +251,11 @@
 fi
 ## END => Test Series 10                               ##
 
+## The next one i plan to run is CPUHOTPLUG tests
+## START => Test Series 11                             ##
+if [ $RUN_CPU_HOTPLUG -eq 1 ]
+then
+./runltp -f cpuhotplug
+fi
+## END => Test Series 11                               ##
+
diff --git a/runtest/cpuhotplug b/runtest/cpuhotplug
new file mode 100644
index 0000000..bf0619a
--- /dev/null
+++ b/runtest/cpuhotplug
@@ -0,0 +1,3 @@
+## Run the CPUHOTPLUG tests here
+
+CPUHOTPLUG (cd $LTPROOT/testcases/kernel/hotplug/cpu_hotplug/; ./runtests.sh)