Chromium Code Reviews| Index: build/android/pylib/host_driven/tests_annotations.py |
| diff --git a/build/android/pylib/host_driven/tests_annotations.py b/build/android/pylib/host_driven/tests_annotations.py |
| index 2654e325f1827d68512e083450284d1ac5b15ae5..aba0464f53ed3fe3e3964ac15b9a8c7bf78dc94d 100644 |
| --- a/build/android/pylib/host_driven/tests_annotations.py |
| +++ b/build/android/pylib/host_driven/tests_annotations.py |
| @@ -88,6 +88,8 @@ def DisabledTest(function): |
| def Feature(feature_list): |
| def _AddFeatures(function): |
| for feature in feature_list: |
| - AnnotatedFunctions._AddFunction('Feature' + feature, function) |
| + AnnotatedFunctions._AddFunction('Feature:%s' % feature, function) |
|
frankf
2013/08/19 18:08:36
Assuming this is used as Feature=Blah on the comma
gkanwar1
2013/08/19 18:10:41
Yes.
|
| + # TODO(gkanwar): Remove support for the old Feature annotation |
| + AnnotatedFunctions._AddFunction('Feature%s' % feature, function) |
| return AnnotatedFunctions._AddFunction('Feature', function) |
| return _AddFeatures |