#!/usr/bin/env python | |
# Copyright (c) 2010 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 | |
third_party/blink/tools/run_web_tests.py""" | |
import sys | |
if __name__ == '__main__': | |
print '\n Please use third_party/blink/tools/run_web_tests.*. ' \ | |
'This command will be removed.\n' | |
sys.exit(1) |