Add the option to specify an email address to be notified on job
completion.

Risk: Low
Visibility: High

Signed-off-by: Jeremy Orlow <jorlow@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2268 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/cli/job_unittest.py b/cli/job_unittest.py
index 4b3a62b..ef241bb 100755
--- a/cli/job_unittest.py
+++ b/cli/job_unittest.py
@@ -563,7 +563,7 @@
     kernel_ctrl_file = 'kernel = \'kernel\'\ndef step_init():\n    job.next_step([step_test])\n    testkernel = job.kernel(\'kernel\')\n    \n    testkernel.install()\n    testkernel.boot(args=\'console_always_print=1\')\n\ndef step_test():\n    job.next_step(\'step0\')\n\ndef step0():\n    AUTHOR = "Autotest Team"\n    NAME = "Sleeptest"\n    TIME = "SHORT"\n    TEST_CATEGORY = "Functional"\n    TEST_CLASS = "General"\n    TEST_TYPE = "client"\n    \n    DOC = """\n    This test simply sleeps for 1 second by default.  It\'s a good way to test\n    profilers and double check that autotest is working.\n    The seconds argument can also be modified to make the machine sleep for as\n    long as needed.\n    """\n    \n    job.run_test(\'sleeptest\', seconds = 1)'
 
     data = {'priority': 'Medium', 'control_file': ctrl_file, 'hosts': ['host0'],
-            'name': 'test_job0', 'control_type': 'Client',
+            'name': 'test_job0', 'control_type': 'Client', 'email_list': '',
             'meta_hosts': [], 'is_synchronous': False, 'dependencies': []}