Index: build/android/run_instrumentation_tests.py |
diff --git a/build/android/run_instrumentation_tests.py b/build/android/run_instrumentation_tests.py |
deleted file mode 100755 |
index 7a9fa1ec812b091fed91cd91f29dea30cc8503ac..0000000000000000000000000000000000000000 |
--- a/build/android/run_instrumentation_tests.py |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-#!/usr/bin/env python |
-# |
-# Copyright (c) 2012 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. |
- |
-"""Runs both the Python and Java instrumentation tests.""" |
- |
-import logging |
-import os |
-import sys |
- |
-from pylib import cmd_helper |
- |
- |
-if __name__ == '__main__': |
- args = [os.path.join(os.path.dirname(__file__), 'test_runner.py'), |
- 'instrumentation'] + sys.argv[1:] |
- logging.warning('*' * 80) |
- logging.warning('This script is deprecated and will be removed soon.') |
- logging.warning('Use the following instead: %s', ' '.join(args)) |
- logging.warning('*' * 80) |
- sys.exit(1) |