cd3f9f8d8b
R=machenbach@chromium.org No-Try: true Bug: chromium:899028 Change-Id: I1de1f393989a63d165209e78f19284053c73ba08 Reviewed-on: https://chromium-review.googlesource.com/c/1307423 Commit-Queue: Sergiy Byelozyorov <sergiyb@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#57147}
9 lines
349 B
Python
9 lines
349 B
Python
# Copyright 2018 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
def CheckChangeOnCommit(input_api, output_api):
|
|
tests = input_api.canned_checks.GetUnitTestsInDirectory(
|
|
input_api, output_api, 'unittests')
|
|
return input_api.RunTests(tests)
|