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

Unified Diff: test_wrapper.py

Issue 9148002: Replace test.py with test.dart, using test_wrapper.py, temporarily to find problems. Will be rev... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tools/
Patch Set: Created 8 years, 11 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 | « test_backup.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test_wrapper.py
===================================================================
--- test_wrapper.py (revision 3083)
+++ test_wrapper.py (working copy)
@@ -1,27 +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')
- dart_test_script = string.join([tools_dir, 'test.dart'], os.sep)
- command = [dart_binary, dart_test_script] + args
- return subprocess.call(command)
-
-if __name__ == '__main__':
- sys.exit(Main())
« no previous file with comments | « test_backup.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698