Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 """Presubmit script for remoting. | |
| 6 | |
| 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | |
| 8 for more details about the presubmit API built into depot_tools. | |
| 9 """ | |
| 10 | |
| 11 BROWSER_TEST_INSTRUCTIONS_LINK = ( | |
| 12 "https://wiki.corp.google.com/twiki/bin/view/Main/ChromotingWaterfall#Runnin g_on_a_Swarming_bot.") | |
|
kelvinp
2015/06/08 22:11:01
This link won't be accessible for non-googlers. B
| |
| 13 | |
| 14 | |
| 15 def CheckChangeOnUpload(input_api, output_api): | |
| 16 print "*******IMPORTANT NOTE*******" | |
| 17 print "Before committing, please run Remoting browser_tests." | |
| 18 print "Instructions: %s" % BROWSER_TEST_INSTRUCTIONS_LINK | |
| 19 print "Make sure all tests pass." | |
| 20 return [] | |
| 21 | |
| 22 def CheckChangeOnCommit(input_api, output_api): | |
| 23 """TODO(anandc): Run browser-tests on the Chromoting waterfall as part of | |
|
Jamie
2015/06/08 22:46:28
Please create a bug tracking this work and referen
anandc
2015/06/08 23:40:09
Done.
| |
| 24 committing a CL.""" | |
| 25 return [] | |
| OLD | NEW |