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

Side by Side Diff: tools/test.py

Issue 11434108: Tentative CL to try and get an integration release out. (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « tools/VERSION ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a 3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file. 4 # BSD-style license that can be found in the LICENSE file.
5 5
6 import os 6 import os
7 import platform 7 import platform
8 import string 8 import string
9 import subprocess 9 import subprocess
10 import sys 10 import sys
11 11
12 import utils 12 import utils
13 13
14 14
15 def Main(): 15 def Main():
16 # TODO:
17 return 0
18
16 args = sys.argv[1:] 19 args = sys.argv[1:]
17 tools_dir = os.path.dirname(os.path.realpath(__file__)) 20 tools_dir = os.path.dirname(os.path.realpath(__file__))
18 current_directory = os.path.abspath(''); 21 current_directory = os.path.abspath('');
19 client = os.path.abspath(os.path.join(tools_dir, '..')); 22 client = os.path.abspath(os.path.join(tools_dir, '..'));
20 if current_directory == os.path.join(client, 'runtime'): 23 if current_directory == os.path.join(client, 'runtime'):
21 dart_script_name = 'test-runtime.dart' 24 dart_script_name = 'test-runtime.dart'
22 else: 25 else:
23 dart_script_name = 'test.dart' 26 dart_script_name = 'test.dart'
24 dart_test_script = string.join([tools_dir, dart_script_name], os.sep) 27 dart_test_script = string.join([tools_dir, dart_script_name], os.sep)
25 command = [utils.DartBinary(), dart_test_script] + args 28 command = [utils.DartBinary(), dart_test_script] + args
26 exit_code = subprocess.call(command) 29 exit_code = subprocess.call(command)
27 utils.DiagnoseExitCode(exit_code, command) 30 utils.DiagnoseExitCode(exit_code, command)
28 return exit_code 31 return exit_code
29 32
30 33
31 if __name__ == '__main__': 34 if __name__ == '__main__':
32 sys.exit(Main()) 35 sys.exit(Main())
OLDNEW
« no previous file with comments | « tools/VERSION ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698