Turns out this particular file is not a unittest, although it has a name that complies with the pattern the unittest script looks for.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> --- utils/unittest_suite.py | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/utils/unittest_suite.py b/utils/unittest_suite.py index 850371c..78a9602 100755 --- a/utils/unittest_suite.py +++ b/utils/unittest_suite.py @@ -66,6 +66,11 @@ LONG_RUNTIME = set(( 'logging_manager_test.py', )) +# This particular KVM autotest test is not a unittest +SKIP = set(( + 'guest_test.py', + )) + LONG_TESTS = (REQUIRES_DJANGO | REQUIRES_MYSQLDB | REQUIRES_GWT | @@ -108,7 +113,7 @@ def run_test(mod_names, options): def scan_for_modules(start, options): modules = [] - skip_tests = set() + skip_tests = SKIP if options.skip_tests: skip_tests.update(options.skip_tests.split()) -- 1.7.3.5 _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
