Create a new unittest set for REQUIRES_AUTH and move tests into LONG_TESTS that require auth.
Signed-off-by: Scott Zawalski <[email protected]> --- autotest/utils/unittest_suite.py 2010-04-05 12:38:58.000000000 -0700 +++ autotest/utils/unittest_suite.py 2010-04-05 12:38:58.000000000 -0700 @@ -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) _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
