1#!/usr/bin/env vpython
2#
3# Copyright 2016 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7import sys
8
9from blinkpy.common import host
10from blinkpy.web_tests import update_expectations
11from blinkpy.web_tests.layout_package.bot_test_expectations import BotTestExpectationsFactory
12
13
14if __name__ == "__main__":
15    HOST = host.Host()
16    RETURN_CODE = update_expectations.main(
17        HOST, BotTestExpectationsFactory(HOST.builders), sys.argv[1:])
18    sys.exit(RETURN_CODE)
19