| OLD | NEW |
| (Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 """Run inspector (DevTools) layout tests""" |
| 7 from os import path |
| 8 import sys |
| 9 |
| 10 from webkitpy.common import multiprocessing_bootstrap |
| 11 |
| 12 up = path.dirname |
| 13 layout_tests = path.join(up(up(up(path.abspath(__file__)))), 'Source', 'devtools
', 'layout_tests') |
| 14 sys.argv.append('--layout-tests-directory={}'.format(layout_tests)) |
| 15 multiprocessing_bootstrap.run('webkitpy', 'layout_tests', 'run_webkit_tests.py') |
| OLD | NEW |