Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: third_party/WebKit/Tools/Scripts/run-inspector-tests

Issue 2454323004: Make layout test harness extensible with custom layout tests directory (Closed)
Patch Set: Undo non test harness changes Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698