Add reboot tests

Signed-off-by: Martin J. Bligh <mbligh@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@793 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/samples/continuous_reboot.srv b/server/samples/continuous_reboot.srv
new file mode 100644
index 0000000..c1f0872
--- /dev/null
+++ b/server/samples/continuous_reboot.srv
@@ -0,0 +1,6 @@
+def run(machine):
+	host = hosts.SSHHost(machine)
+	while True:
+		host.reboot()
+
+parallel_simple(run, machines)