Create a new unittest set for REQUIRES_AUTH and move tests into LONG_TESTS that require auth. 

Signed-off-by: Scott Zawalski <scottz@google.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@4375 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/utils/unittest_suite.py b/utils/unittest_suite.py
index c0c28f5..6364df8 100755
--- a/utils/unittest_suite.py
+++ b/utils/unittest_suite.py
@@ -45,6 +45,10 @@
         'serviceHandler_unittest.py',
         ))
 
+REQUIRES_AUTH = set ((
+    'trigger_unittest.py',
+    ))
+
 LONG_RUNTIME = set((
     'barrier_unittest.py',
     'logging_manager_test.py',
@@ -54,6 +58,7 @@
               REQUIRES_MYSQLDB |
               REQUIRES_GWT |
               REQUIRES_SIMPLEJSON |
+              REQUIRES_AUTH |
               LONG_RUNTIME)