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

Unified Diff: tools/test_wrapper.py

Issue 9379003: Remove tools/test_wrapper.py. test.py is now a wrapper for test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix issue 1036 Created 8 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/tests/dartc/dartc.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test_wrapper.py
diff --git a/tools/test_wrapper.py b/tools/test_wrapper.py
deleted file mode 100755
index 51f945d9cf923973ae3b12ce9bebd89f3bc76fef..0000000000000000000000000000000000000000
--- a/tools/test_wrapper.py
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-import os
-import platform
-import string
-import subprocess
-import sys
-
-from utils import GuessOS
-
-def Main():
- args = sys.argv[1:]
- tools_dir = os.path.dirname(os.path.realpath(__file__))
- dart_binary_prefix = os.path.join(tools_dir, 'testing', 'bin')
- if GuessOS() == "win32":
- dart_binary = os.path.join(dart_binary_prefix, 'windows', 'dart.exe')
- else:
- dart_binary = os.path.join(dart_binary_prefix, GuessOS(), 'dart')
- current_directory = os.path.abspath('');
- client = os.path.abspath(os.path.join(tools_dir, '..'));
- if current_directory == os.path.join(client, 'runtime'):
- dart_script_name = 'test-runtime.dart'
- elif current_directory == os.path.join(client, 'compiler'):
- dart_script_name = 'test-compiler.dart'
- else:
- dart_script_name = 'test.dart'
- dart_test_script = string.join([tools_dir, dart_script_name], os.sep)
- command = [dart_binary, dart_test_script] + args
- return subprocess.call(command)
-
-if __name__ == '__main__':
- sys.exit(Main())
« no previous file with comments | « client/tests/dartc/dartc.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698