Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2012 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 changes affecting tools/json_schema_compiler/ | |
| 6 | |
| 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | |
| 8 for more details about the presubmit API built into gcl. | |
| 9 """ | |
| 10 | |
| 11 UNIT_TESTS = [ './code_test.py', './cpp_type_generator_test.py', | |
| 12 './cpp_util_test.py', './model_test.py' ] | |
| 13 | |
| 14 def CheckChangeOnUpload(input_api, output_api): | |
|
M-A Ruel
2012/03/27 00:42:05
Idea: you could use RunUnitTestsInDirectory with a
| |
| 15 return input_api.canned_checks.RunUnitTests(input_api, output_api, | |
| 16 UNIT_TESTS) | |
| 17 | |
| 18 def CheckChangeOnCommit(input_api, output_api): | |
| 19 return input_api.canned_checks.RunUnitTests(input_api, output_api, | |
| 20 UNIT_TESTS) | |
| OLD | NEW |