commit | c93b7d35fa33720bf6c2e5852b879946f3fb5c54 | [log] [tgz] |
---|---|---|
author | Shudong Zhou <shudongzhou@gmail.com> | Mon Nov 26 17:55:36 2012 -0800 |
committer | Shudong Zhou <shudongzhou@gmail.com> | Mon Nov 26 17:55:36 2012 -0800 |
tree | dafd63363b6c972bdc05d08ad3baa6c2df4aa7be | |
parent | b7f12466ae1b55525d260591cba1e762e63de433 [diff] [blame] |
Add run_test_list, simple version
diff --git a/oft b/oft index 562a670..1f28784 100755 --- a/oft +++ b/oft
@@ -441,6 +441,9 @@ if test.__name__ in profile_mod.skip_test_list: logging.info("Skipping test %s due to profile" % test.__name__) return TEST_PRIO_SKIP + if test.__name__ in profile_mod.run_test_list: + logging.info("Add test %s due to profile" % test.__name__) + return TEST_PRIO_DEFAULT return getattr(test, "priority", TEST_PRIO_DEFAULT) #