new file mode 100644
@@ -0,0 +1,17 @@
+AUTHOR = "Pradeep Kumar Surisetty <psuriset@linux.vnet.ibm.com>"
+NAME = "flail"
+TEST_CATEGORY = "Stress"
+TEST_CLASS = "General"
+TEST_TYPE = "client"
+TIME = 'MEDIUM'
+EXPERIMENTAL = "True"
+
+DOC='''
+flail is a systemcall fuzzer tool. This test simply runs flail.
+Fuzzing is slang for fault injection . It runs all system calls
+for that kernel version with random args.
+The goal is to find bugs in software without reading code or
+designing detailed test cases.
+'''
+
+job.run_test('flail')
new file mode 100644
@@ -0,0 +1,14 @@
+AUTHOR = """
+Anton Blanchard <anton@samba.org>
+"""
+NAME = "Systemtap test suite"
+TEST_TYPE = "client"
+TEST_CLASS = "General"
+TEST_CATEGORY = "Functional"
+TIME = "MEDIUM"
+DOC = """\
+This test runs the systemtap testsuite. You will need a kernel with debug
+symbols, or a matching debuginfo package from your distro.
+"""
+
+job.run_test(url='systemtap', local=False)
@@ -252,7 +252,10 @@ variants:
test_control_file = rtc.control
- iozone:
test_control_file = iozone.control
-
+ - flail:
+ test_control_file = flail.control
+ - systemtap:
+ test_control_file = systemtap.control
- linux_s3: install setup unattended_install.cdrom
only Linux
Signed-off-by: Pradeep Surisetty <psuriset@linux.vnet.ibm.com> --- client/tests/kvm/autotest_control/flail.control | 17 +++++++++++++++++ .../tests/kvm/autotest_control/systemtap.control | 14 ++++++++++++++ client/tests/kvm/tests_base.cfg.sample | 5 ++++- 3 files changed, 35 insertions(+), 1 deletions(-) create mode 100644 client/tests/kvm/autotest_control/flail.control create mode 100644 client/tests/kvm/autotest_control/systemtap.control