summaryrefslogtreecommitdiffstats
path: root/webkit/tools/layout_tests/run_webkit_tests.py
blob: eeebfa96e2571e21de2b1e9bc86b2d8665441014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
# Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Wrapper around webkitpy/layout_tests/run-chromium-webkit-tests.py"""
import os
import sys

sys.path.append(os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])),
                             "webkitpy", "layout_tests"))
import run_chromium_webkit_tests

if __name__ == '__main__':
    options, args = run_chromium_webkit_tests.parse_args()
    run_chromium_webkit_tests.main(options, args)