Commit 5c76de94 authored by jam@chromium.org's avatar jam@chromium.org

Don't prompt developers to add blank test= or bug= lines.

Review URL: http://codereview.chromium.org/6391001

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@72349 0039d316-1c4b-4281-b951-d872f2087c98
parent cde3bb69
......@@ -12,7 +12,8 @@ def CheckChangeHasTestField(input_api, output_api):
return []
else:
return [output_api.PresubmitNotifyResult(
'Changelist should have a TEST= field. TEST=none is allowed.')]
'If this change requires manual test instructions to QA team, add '
'TEST=[instructions].')]
def CheckChangeHasBugField(input_api, output_api):
......@@ -21,7 +22,7 @@ def CheckChangeHasBugField(input_api, output_api):
return []
else:
return [output_api.PresubmitNotifyResult(
'Changelist should have a BUG= field. BUG=none is allowed.')]
'If this change has an associated bug, add BUG=[bug number].')]
def CheckChangeHasTestedField(input_api, output_api):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment