Missed a comma in a tuple. Added category for REQUIRES_HTTPLIB2. Added a test to REQUIRES_MYSQLDB.
Signed-off-by: James Ren <[email protected]> --- autotest/utils/unittest_suite.py 2010-04-08 15:58:41.000000000 -0700 +++ autotest/utils/unittest_suite.py 2010-04-09 15:58:31.000000000 -0700 @@ -29,6 +29,6 @@ 'metahost_scheduler_unittest.py', 'site_metahost_scheduler_unittest.py', 'rpc_utils_unittest.py', - 'site_rpc_utils_unittest.py' + 'site_rpc_utils_unittest.py', 'execution_engine_unittest.py', )) @@ -55,6 +56,9 @@ 'trigger_unittest.py', )) +REQUIRES_HTTPLIB2 = set(( + )) + LONG_RUNTIME = set(( 'barrier_unittest.py', 'logging_manager_test.py', @@ -64,6 +69,7 @@ REQUIRES_MYSQLDB | REQUIRES_GWT | REQUIRES_SIMPLEJSON | + REQUIRES_HTTPLIB2 | REQUIRES_AUTH | LONG_RUNTIME) _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
