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.") | |
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 | |
23 def CheckChangeOnCommit(input_api, output_api): | |
24 """TODO(anandc): Run browser-tests on the Chromoting waterfall as part of | |
25 committing a CL. See http://crbug/498026""" | |
26 return [] | |
OLD | NEW |