1AUTHOR = "Autotest Team"
2NAME = "Sleeptest"
3TIME = "SHORT"
4TEST_CATEGORY = "Functional"
5TEST_CLASS = "General"
6TEST_TYPE = "client"
7
8DOC = """
9This test simply sleeps for 1 second by default.  It's a good way to test
10profilers and double check that autotest is working.
11The seconds argument can also be modified to make the machine sleep for as
12long as needed.
13"""
14
15job.run_test('sleeptest', seconds = 1)
16