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

Side by Side Diff: mojo/dart/unittests/http_load_test/runner.py

Issue 1545483003: Dart: Reorganize files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix build file Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """This script runs the Dart content handler http load test in the mojo tree.""" 6 """This script runs the Dart content handler http load test in the mojo tree."""
7 7
8 import argparse 8 import argparse
9 import os 9 import os
10 import subprocess 10 import subprocess
(...skipping 27 matching lines...) Expand all
38 type=str, 38 type=str,
39 required=True, 39 required=True,
40 help="Path to dart executable.") 40 help="Path to dart executable.")
41 args = parser.parse_args() 41 args = parser.parse_args()
42 tester_directory = os.path.dirname(os.path.realpath(__file__)) 42 tester_directory = os.path.dirname(os.path.realpath(__file__))
43 tester_dart_script = os.path.join(tester_directory, 'bin', 'tester.dart') 43 tester_dart_script = os.path.join(tester_directory, 'bin', 'tester.dart')
44 package_directory = os.path.join( 44 package_directory = os.path.join(
45 args.build_dir, 'gen', 'dart-pkg', 'mojo_dart_http_load_test') 45 args.build_dir, 'gen', 'dart-pkg', 'mojo_dart_http_load_test')
46 sys.exit(main(args.build_dir, args.dart_exe, tester_dart_script, 46 sys.exit(main(args.build_dir, args.dart_exe, tester_dart_script,
47 package_directory)) 47 package_directory))
OLDNEW
« no previous file with comments | « mojo/dart/unittests/http_load_test/pubspec.yaml ('k') | mojo/dart/unittests/observatory_test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698