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

Unified Diff: tools/testing/perf_testing/run_perf_tests.py

Issue 9933002: Some clean up on run_perf_test (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Change v8 to js Created 8 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/perf_testing/run_perf_tests.py
diff --git a/tools/testing/perf_testing/run_perf_tests.py b/tools/testing/perf_testing/run_perf_tests.py
index 15138859068a00a95ca1595919c01423fbc84e58..bf6da0ac863686823b9e9228cc143d6ec5bf96ca 100755
--- a/tools/testing/perf_testing/run_perf_tests.py
+++ b/tools/testing/perf_testing/run_perf_tests.py
@@ -24,7 +24,7 @@ TOOLS_PATH = os.path.join(dirname(dirname(dirname(abspath(__file__)))))
sys.path.append(TOOLS_PATH)
import utils
-"""This script runs to track performance and correctness progress of
+"""This script runs to track performance and size progress of
different svn revisions. It tests to see if there a newer version of the code on
the server, and will sync and run the performance tests if so."""
@@ -36,14 +36,12 @@ COMMAND_LINE = 'commandline'
JS = 'js'
FROG = 'frog'
JS_AND_FROG = [JS, FROG]
-CORRECTNESS = 'Percent passing'
COLORS = ['blue', 'green', 'red', 'cyan', 'magenta', 'black']
GRAPH_OUT_DIR = 'graphs'
BROWSER_PERF = 'browser-perf'
TIME_SIZE = 'code-time-size'
CL_PERF = 'cl-results'
-BROWSER_CORRECTNESS = 'browser-correctness'
SLEEP_TIME = 200
VERBOSE = False
@@ -60,7 +58,7 @@ def run_cmd(cmd_list, outfile=None, append=False):
Args:
cmd_list: a list of strings that make up the command to run
outfile: a string indicating the name of the file that we should write
- stdout to
+ stdout to
append: True if we want to append to the file instead of overwriting it"""
if VERBOSE:
print ' '.join(cmd_list)
@@ -71,7 +69,7 @@ def run_cmd(cmd_list, outfile=None, append=False):
mode = 'a'
out = open(outfile, mode)
if append:
- # Annoying Windows "feature" -- append doesn't actually append unless you
+ # Annoying Windows "feature" -- append doesn't actually append unless you
# explicitly go to the end of the file.
# http://mail.python.org/pipermail/python-list/2009-October/1221859.html
out.seek(0, os.SEEK_END)
@@ -99,8 +97,8 @@ def sync_and_build():
run_cmd(['svn', 'revert', os.path.join(os.getcwd(), 'frog', 'minfrog')])
run_cmd(['gclient', 'sync'])
-
- # On Windows, the output directory is marked as "Read Only," which causes an
+
+ # On Windows, the output directory is marked as "Read Only," which causes an
# error to be thrown when we use shutil.rmtree. This helper function changes
# the permissions so we can still delete the directory.
def on_rm_error(func, path, exc_info):
@@ -114,12 +112,12 @@ def sync_and_build():
# TODO(efortuna): Currently always building ia32 architecture because we don't
# have test statistics for what's passing on x64. Eliminate arch specification
# when we have tests running on x64, too.
- shutil.rmtree(os.path.join(os.getcwd(),
- utils.GetBuildRoot(utils.GuessOS(), 'release', 'ia32')),
+ shutil.rmtree(os.path.join(os.getcwd(),
+ utils.GetBuildRoot(utils.GuessOS(), 'release', 'ia32')),
onerror=on_rm_error)
lines = run_cmd([os.path.join('.', 'tools', 'build.py'), '-m', 'release',
'--arch=ia32', 'create_sdk'])
-
+
for line in lines:
if 'BUILD FAILED' in lines:
# Someone checked in a broken build! Just stop trying to make it work
@@ -142,7 +140,7 @@ def ensure_output_directory(dir_name):
def has_new_code():
"""Tests if there are any newer versions of files on the server."""
- os.chdir(DART_INSTALL_LOCATION)
+ os.chdir(DART_INSTALL_LOCATION)
results = run_cmd(['svn', 'st', '-u'])
for line in results:
if '*' in line:
@@ -182,7 +180,7 @@ def upload_to_app_engine(username, password):
username: App Engine username for uploading data to dartperf.googleplex.com
password: App Engine password
"""
- # TODO(efortuna): This is the most basic way to get the data up
+ # TODO(efortuna): This is the most basic way to get the data up
# for others to view. Revisit this once we're serving nicer graphs (Google
# Chart Tools) and from multiple perfbots and once we're in a position to
# organize the data in a useful manner(!!).
@@ -198,12 +196,12 @@ def upload_to_app_engine(username, password):
files += [(os.path.getmtime(os.path.join(data, f)), f)]
files.sort()
for f in files[-1000:]:
- shutil.copyfile(os.path.join(data, f[1]),
+ shutil.copyfile(os.path.join(data, f[1]),
os.path.join(path, f[1]+'.txt'))
# Generate directory listing.
for data in [BROWSER_PERF, TIME_SIZE, CL_PERF]:
path = os.path.join('appengine', 'static', 'data', data, utils.GuessOS())
- out = open(os.path.join('appengine', 'static',
+ out = open(os.path.join('appengine', 'static',
'%s-%s.html' % (data, utils.GuessOS())), 'w')
out.write('<html>\n <body>\n <ul>\n')
for f in os.listdir(path):
@@ -214,15 +212,15 @@ def upload_to_app_engine(username, password):
out.write(' </ul>\n </body>\n</html>')
out.close()
- shutil.rmtree(os.path.join('appengine', 'static', 'graphs'),
+ shutil.rmtree(os.path.join('appengine', 'static', 'graphs'),
ignore_errors=True)
shutil.copytree('graphs', os.path.join('appengine', 'static', 'graphs'))
- shutil.copyfile('index.html', os.path.join('appengine', 'static',
+ shutil.copyfile('index.html', os.path.join('appengine', 'static',
'index.html'))
- shutil.copyfile('data.html', os.path.join('appengine', 'static',
+ shutil.copyfile('data.html', os.path.join('appengine', 'static',
'data.html'))
- p = subprocess.Popen([os.path.join('..', '..', '..', 'third_party',
- 'appengine-python', 'appcfg.py'), 'update',
+ p = subprocess.Popen([os.path.join('..', '..', '..', 'third_party',
+ 'appengine-python', 'appcfg.py'), 'update',
'appengine/'], shell=HAS_SHELL, stdin=subprocess.PIPE)
p.stdin.write(username + '\n')
p.stdin.write(password + '\n')
@@ -233,15 +231,15 @@ class TestRunner(object):
"""The base class to provide shared code for different tests we will run and
graph."""
- def __init__(self, result_folder_name, platform_list, v8_and_or_frog_list,
+ def __init__(self, result_folder_name, platform_list, js_and_or_frog_list,
values_list):
"""Args:
result_folder_name the name of the folder where a tracefile of
performance results will be stored.
platform_list a list containing the platform(s) that our data has been
run on. (command line, firefox, chrome, etc)
- v8_and_or_frog_list a list specifying whether we hold data about Frog
- generated code, plain JS code (v8), or a combination of both.
+ js_and_or_frog_list a list specifying whether we hold data about Frog
+ generated code, plain JS code (js), or a combination of both.
values_list a list containing the type of data we will be graphing
(benchmarks, percentage passing, etc)"""
self.result_folder_name = result_folder_name
@@ -257,38 +255,38 @@ class TestRunner(object):
for platform in platform_list:
self.revision_dict[platform] = dict()
self.values_dict[platform] = dict()
- for f in v8_and_or_frog_list:
+ for f in js_and_or_frog_list:
self.revision_dict[platform][f] = dict()
self.values_dict[platform][f] = dict()
for val in values_list:
self.revision_dict[platform][f][val] = []
self.values_dict[platform][f][val] = []
- if JS in v8_and_or_frog_list:
+ if JS in js_and_or_frog_list:
self.revision_dict[platform][JS][JS_MEAN] = []
self.values_dict[platform][JS][JS_MEAN] = []
- if FROG in v8_and_or_frog_list:
+ if FROG in js_and_or_frog_list:
self.revision_dict[platform][FROG][FROG_MEAN] = []
self.values_dict[platform][FROG][FROG_MEAN] = []
-
+
def get_color(self):
color = COLORS[self.color_index]
self.color_index = (self.color_index + 1) % len(COLORS)
return color
- def style_and_save_perf_plot(self, chart_title, y_axis_label, size_x, size_y,
- legend_loc, filename, platform_list, v8_and_or_frog_list, values_list,
+ def style_and_save_perf_plot(self, chart_title, y_axis_label, size_x, size_y,
+ legend_loc, filename, platform_list, js_and_or_frog_list, values_list,
should_clear_axes=True):
- """Sets style preferences for chart boilerplate that is consistent across
+ """Sets style preferences for chart boilerplate that is consistent across
all charts, and saves the chart as a png.
Args:
- size_x: the size of the printed chart, in inches, in the horizontal
+ size_x: the size of the printed chart, in inches, in the horizontal
direction
size_y: the size of the printed chart, in inches in the vertical direction
legend_loc: the location of the legend in on the chart. See suitable
arguments for the loc argument in matplotlib
filename: the filename that we want to save the resulting chart as
- platform_list: a list containing the platform(s) that our data has been
+ platform_list: a list containing the platform(s) that our data has been
run on. (command line, firefox, chrome, etc)
values_list: a list containing the type of data we will be graphing
(performance, percentage passing, etc)
@@ -297,10 +295,10 @@ class TestRunner(object):
if should_clear_axes:
plt.cla() # cla = clear current axes
for platform in platform_list:
- for f in v8_and_or_frog_list:
+ for f in js_and_or_frog_list:
for val in values_list:
plt.plot(self.revision_dict[platform][f][val],
- self.values_dict[platform][f][val],
+ self.values_dict[platform][f][val],
color=self.get_color(), label='%s-%s-%s' % (platform, f, val))
plt.xlabel('Revision Number')
@@ -330,32 +328,32 @@ class TestRunner(object):
if not search_for_revision(['git', 'svn', 'info']):
run_cmd(['echo', 'Revision: unknown'], outfile)
- def calculate_geometric_mean(self, platform, frog_or_v8, svn_revision):
+ def calculate_geometric_mean(self, platform, frog_or_js, svn_revision):
"""Calculate the aggregate geometric mean for JS and frog benchmark sets,
given two benchmark dictionaries."""
geo_mean = 0
for benchmark in get_benchmarks():
- geo_mean += math.log(self.values_dict[platform][frog_or_v8][benchmark][
- len(self.values_dict[platform][frog_or_v8][benchmark]) - 1])
-
+ geo_mean += math.log(self.values_dict[platform][frog_or_js][benchmark][
+ len(self.values_dict[platform][frog_or_js][benchmark]) - 1])
+
mean = JS_MEAN
- if frog_or_v8 == FROG:
+ if frog_or_js == FROG:
mean = FROG_MEAN
- self.values_dict[platform][frog_or_v8][mean] += \
+ self.values_dict[platform][frog_or_js][mean] += \
[math.pow(math.e, geo_mean / len(get_benchmarks()))]
- self.revision_dict[platform][frog_or_v8][mean] += [svn_revision]
+ self.revision_dict[platform][frog_or_js][mean] += [svn_revision]
def run(self):
- """Run the benchmarks/tests from the command line and plot the
+ """Run the benchmarks/tests from the command line and plot the
results."""
plt.cla() # cla = clear current axes
os.chdir(DART_INSTALL_LOCATION)
ensure_output_directory(self.result_folder_name)
ensure_output_directory(GRAPH_OUT_DIR)
self.run_tests()
-
+
os.chdir(os.path.join('tools', 'testing', 'perf_testing'))
-
+
# TODO(efortuna): You will want to make this only use a subset of the files
# eventually.
files = os.listdir(self.result_folder_name)
@@ -369,7 +367,7 @@ class TestRunner(object):
class PerformanceTest(TestRunner):
"""Super class for all performance testing."""
def __init__(self, result_folder_name, platform_list, platform_type):
- super(PerformanceTest, self).__init__(result_folder_name,
+ super(PerformanceTest, self).__init__(result_folder_name,
platform_list, get_versions(), get_benchmarks())
self.platform_list = platform_list
self.platform_type = platform_type
@@ -380,35 +378,35 @@ class PerformanceTest(TestRunner):
for benchmark in get_benchmarks():
self.style_and_save_perf_plot(
'Performance of %s over time on the %s on %s' % (benchmark,
- self.platform_type, utils.GuessOS()), 'Speed (bigger = better)', 16,
- 14, 'lower left', benchmark + png_filename, self.platform_list,
+ self.platform_type, utils.GuessOS()), 'Speed (bigger = better)', 16,
+ 14, 'lower left', benchmark + png_filename, self.platform_list,
get_versions(), [benchmark])
def plot_avg_perf(self, png_filename):
"""Generate a plot that shows the performance changes of the geomentric mean
of JS and frog benchmark performance over svn history."""
(title, y_axis, size_x, size_y, loc, filename) = \
- ('Geometric Mean of benchmark %s performance on %s ' %
+ ('Geometric Mean of benchmark %s performance on %s ' %
(self.platform_type, utils.GuessOS()), 'Speed (bigger = better)', 16, 5,
'lower left', 'avg'+png_filename)
clear_axis = True
for platform in self.platform_list:
- self.style_and_save_perf_plot(title, y_axis, size_x, size_y, loc,
+ self.style_and_save_perf_plot(title, y_axis, size_x, size_y, loc,
filename, [platform], [JS], [JS_MEAN], clear_axis)
clear_axis = False
- self.style_and_save_perf_plot(title, y_axis, size_x, size_y, loc,
+ self.style_and_save_perf_plot(title, y_axis, size_x, size_y, loc,
filename, [platform], [FROG], [FROG_MEAN], clear_axis)
def plot_results(self, png_filename):
self.plot_all_perf(png_filename)
self.plot_avg_perf('2' + png_filename)
-
+
class CommandLinePerformanceTest(PerformanceTest):
"""Run performance tests from the command line."""
def __init__(self, result_folder_name):
- super(CommandLinePerformanceTest, self).__init__(result_folder_name,
+ super(CommandLinePerformanceTest, self).__init__(result_folder_name,
[COMMAND_LINE], 'command line')
def process_file(self, afile):
@@ -431,22 +429,22 @@ class CommandLinePerformanceTest(PerformanceTest):
if len(tokens) < 4 or tokens[0] not in get_benchmarks():
#Done tabulating data.
break
- v8_value = float(tokens[1])
+ js_value = float(tokens[1])
frog_value = float(tokens[3])
- if v8_value == 0 or frog_value == 0:
- #Then there was an error when this performance test was run. Do not
+ if js_value == 0 or frog_value == 0:
+ #Then there was an error when this performance test was run. Do not
#count it in our numbers.
return
benchmark = tokens[0]
self.revision_dict[COMMAND_LINE][JS][benchmark] += [revision_num]
- self.values_dict[COMMAND_LINE][JS][benchmark] += [v8_value]
+ self.values_dict[COMMAND_LINE][JS][benchmark] += [js_value]
self.revision_dict[COMMAND_LINE][FROG][benchmark] += [revision_num]
self.values_dict[COMMAND_LINE][FROG][benchmark] += [frog_value]
f.close()
self.calculate_geometric_mean(COMMAND_LINE, FROG, revision_num)
self.calculate_geometric_mean(COMMAND_LINE, JS, revision_num)
-
+
def run_tests(self):
"""Run a performance test on our updated system."""
os.chdir('frog')
@@ -473,14 +471,14 @@ class BrowserPerformanceTest(PerformanceTest):
for browser in get_browsers():
for version in get_versions():
- self.trace_file = os.path.join('tools', 'testing', 'perf_testing',
+ self.trace_file = os.path.join('tools', 'testing', 'perf_testing',
self.result_folder_name,
'perf-%s-%s-%s' % (self.cur_time, browser, version))
self.add_svn_revision_to_trace(self.trace_file)
- file_path = os.path.join(os.getcwd(), 'internal', 'browserBenchmarks',
+ file_path = os.path.join(os.getcwd(), 'internal', 'browserBenchmarks',
'benchmark_page_%s.html' % version)
- run_cmd(['python', os.path.join('tools', 'testing', 'run_selenium.py'),
- '--out', file_path, '--browser', browser,
+ run_cmd(['python', os.path.join('tools', 'testing', 'run_selenium.py'),
+ '--out', file_path, '--browser', browser,
'--timeout', '600', '--perf'], self.trace_file, append=True)
def process_file(self, afile):
@@ -488,7 +486,7 @@ class BrowserPerformanceTest(PerformanceTest):
os.chdir(os.path.join(DART_INSTALL_LOCATION, 'tools', 'testing',
'perf_testing'))
parts = afile.split('-')
- browser = parts[2]
+ browser = parts[2]
version = parts[3]
f = open(os.path.join(self.result_folder_name, afile))
lines = f.readlines()
@@ -514,7 +512,7 @@ class BrowserPerformanceTest(PerformanceTest):
results = line.split('<br />')
for result in results:
name_and_score = result.split(':')
- if len(name_and_score) < 2:
+ if len(name_and_score) < 2:
break
name = name_and_score[0].strip()
score = name_and_score[1].strip()
@@ -529,101 +527,31 @@ class BrowserPerformanceTest(PerformanceTest):
f.close()
self.calculate_geometric_mean(browser, version, revision_num)
-
-class BrowserCorrectnessTest(TestRunner):
- def __init__(self, test_type, result_folder_name):
- super(BrowserCorrectnessTest, self).__init__(result_folder_name,
- get_browsers(), [FROG], [CORRECTNESS])
- self.test_type = test_type
-
- def run_tests(self):
- """Run a test of the latest svn revision."""
- system = get_os_directory()
- suffix = ''
- if platform.system() == 'Windows':
- suffix = '.exe'
- for browser in get_browsers():
- current_file = 'correctness%s-%s' % (self.cur_time, browser)
- self.trace_file = os.path.join('tools', 'testing',
- 'perf_testing', self.result_folder_name, current_file)
- self.add_svn_revision_to_trace(self.trace_file)
- dart_sdk = os.path.join(os.getcwd(), utils.GetBuildRoot(utils.GuessOS(),
- 'release', 'ia32'), 'dart-sdk')
- run_cmd([os.path.join('.', 'tools', 'testing', 'bin', system,
- 'dart' + suffix), os.path.join('tools', 'test.dart'),
- '--compiler=frog', '--runtime=%s' % browser,
- '--frog=%s' % os.path.join(dart_sdk, 'bin',
- 'frogc'), '--froglib=%s' % os.path.join(dart_sdk, 'lib'), '--report',
- '--timeout=20', '--progress=color', '--mode=release',
- self.test_type], self.trace_file, append=True)
-
- def process_file(self, afile):
- """Given a trace file, extract all the relevant information out of it to
- determine the number of correctly passing tests.
-
- Arguments:
- afile: the filename string"""
- os.chdir(os.path.join(DART_INSTALL_LOCATION, 'tools', 'testing',
- 'perf_testing'))
- browser = afile.rpartition('-')[2]
- f = open(os.path.join(self.result_folder_name, afile))
- revision_num = 0
- lines = f.readlines()
- total_tests = 0
- num_failed = 0
- expect_fail = 0
- for line in lines:
- if 'Total:' in line:
- total_tests = int(line.split('Total: ')[1].split()[0])
- if 'will be skipped' in line:
- total_tests -= int(line.split()[1])
- if 'we should fix' in line:
- expect_fail += int(line.split()[1])
- if 'Revision' in line:
- revision_num = int(line.split()[1])
- if '--- TIMEOUT ---' in line or 'FAIL:' in line or 'PASS' in line:
- # (A printed out 'PASS' indicates we incorrectly passed a negative
- # test.)
- num_failed += 1
-
- self.revision_dict[browser][FROG][CORRECTNESS] += [revision_num]
- self.values_dict[browser][FROG][CORRECTNESS] += [100.0 *
- (((float)(total_tests - (expect_fail + num_failed))) /total_tests)]
- f.close()
-
- def plot_results(self, png_filename):
- first_time = True
- for browser in get_browsers():
- self.style_and_save_perf_plot('Percentage of language tests passing in '
- 'different browsers', '% of tests passed', 8, 8, 'lower left',
- png_filename, [browser], [FROG], [CORRECTNESS], first_time)
- first_time = False
-
class CompileTimeAndSizeTest(TestRunner):
- """Run tests to determine how long minfrog takes to compile, and the compiled
+ """Run tests to determine how long minfrog takes to compile, and the compiled
file output size of some benchmarking files."""
def __init__(self, result_folder_name):
super(CompileTimeAndSizeTest, self).__init__(result_folder_name,
[COMMAND_LINE], [FROG], ['Compiling on Dart VM', 'Bootstrapping',
'minfrog', 'swarm', 'total'])
- self.failure_threshold = {'Compiling on Dart VM' : 1, 'Bootstrapping' : .5,
+ self.failure_threshold = {'Compiling on Dart VM' : 1, 'Bootstrapping' : .5,
'minfrog' : 100, 'swarm' : 100, 'total' : 100}
def run_tests(self):
os.chdir('frog')
- self.trace_file = os.path.join('..', 'tools', 'testing', 'perf_testing',
+ self.trace_file = os.path.join('..', 'tools', 'testing', 'perf_testing',
self.result_folder_name, self.result_folder_name + self.cur_time)
-
- self.add_svn_revision_to_trace(self.trace_file)
+
+ self.add_svn_revision_to_trace(self.trace_file)
suffix = ''
if platform.system() == 'Windows':
suffix = '.exe'
- elapsed = time_cmd([os.path.join('..', utils.GetBuildRoot(utils.GuessOS(),
+ elapsed = time_cmd([os.path.join('..', utils.GetBuildRoot(utils.GuessOS(),
'release', 'ia32'), 'dart' + suffix), os.path.join('.', 'minfrogc.dart'),
'--out=minfrog', 'minfrog.dart'])
- run_cmd(['echo', '%f Compiling on Dart VM in production mode in seconds'
+ run_cmd(['echo', '%f Compiling on Dart VM in production mode in seconds'
% elapsed], self.trace_file, append=True)
elapsed = time_cmd([os.path.join('.', 'minfrog'), '--out=minfrog',
'minfrog.dart', os.path.join('tests', 'hello.dart')])
@@ -632,7 +560,7 @@ class CompileTimeAndSizeTest(TestRunner):
#numbers will be meaningless.
return
size = os.path.getsize('minfrog')
- run_cmd(['echo', '%f Bootstrapping time in seconds in production mode' %
+ run_cmd(['echo', '%f Bootstrapping time in seconds in production mode' %
elapsed], self.trace_file, append=True)
run_cmd(['echo', '%d Generated checked minfrog size' % size],
self.trace_file, append=True)
@@ -655,11 +583,11 @@ class CompileTimeAndSizeTest(TestRunner):
except OSError:
pass #If compilation failed, continue on running other tests.
- run_cmd(['echo', '%d Generated checked swarm size' % swarm_size],
- self.trace_file, append=True)
-
- run_cmd(['echo', '%d Generated checked total size' % total_size],
- self.trace_file, append=True)
+ run_cmd(['echo', '%d Generated checked swarm size' % swarm_size],
+ self.trace_file, append=True)
+
+ run_cmd(['echo', '%d Generated checked total size' % total_size],
+ self.trace_file, append=True)
os.chdir('..')
def process_file(self, afile):
@@ -686,8 +614,8 @@ class CompileTimeAndSizeTest(TestRunner):
num = float(num)
self.values_dict[COMMAND_LINE][FROG][metric] += [num]
self.revision_dict[COMMAND_LINE][FROG][metric] += [revision_num]
-
- if revision_num != 0:
+
+ if revision_num != 0:
for metric in self.values_list:
self.revision_dict[COMMAND_LINE][FROG][metric].pop()
self.revision_dict[COMMAND_LINE][FROG][metric] += [revision_num]
@@ -700,24 +628,21 @@ class CompileTimeAndSizeTest(TestRunner):
f.close()
def plot_results(self, png_filename):
- self.style_and_save_perf_plot('Compiled minfrog Sizes',
+ self.style_and_save_perf_plot('Compiled minfrog Sizes',
'Size (in bytes)', 10, 10, 'lower left', png_filename, [COMMAND_LINE],
[FROG], ['swarm', 'total', 'minfrog'])
- self.style_and_save_perf_plot('Time to compile and bootstrap',
- 'Seconds', 10, 10, 'lower left', '2' + png_filename, [COMMAND_LINE],
+ self.style_and_save_perf_plot('Time to compile and bootstrap',
+ 'Seconds', 10, 10, 'lower left', '2' + png_filename, [COMMAND_LINE],
[FROG], ['Bootstrapping', 'Compiling on Dart VM'])
def parse_args():
parser = optparse.OptionParser()
- parser.add_option('--command-line', '-c', dest='cl',
- help='Run the command line tests',
- action='store_true', default=False)
- parser.add_option('--size-time', '-s', dest='size',
- help='Run the code size and timing tests',
+ parser.add_option('--command-line', '-c', dest='cl',
+ help='Run the command line tests',
action='store_true', default=False)
- parser.add_option('--language', '-l', dest='language',
- help='Run the language correctness tests',
+ parser.add_option('--size-time', '-s', dest='size',
+ help='Run the code size and timing tests',
action='store_true', default=False)
parser.add_option('--browser-perf', '-b', dest='perf',
help='Run the browser performance tests',
@@ -727,7 +652,7 @@ def parse_args():
'checkin', action='store_true', default=False)
parser.add_option('--verbose', '-v', dest='verbose',
help = 'Print extra debug output', action='store_true', default=False)
- parser.add_option('--user', '-u', dest='username',
+ parser.add_option('--user', '-u', dest='username',
help='Username for submitting new data to App Engine', default='')
args, ignored = parser.parse_args()
@@ -737,12 +662,12 @@ def parse_args():
else:
print 'Warning: performance data will not be uploaded to App Engine' + \
' if you do not provide a username.'
- if not (args.cl or args.size or args.language or args.perf):
- args.cl = args.size = args.language = args.perf = True
- return (args.cl, args.size, args.language, args.perf, args.continuous,
- args.verbose, args.username, password)
+ if not (args.cl or args.size or args.perf):
+ args.cl = args.size = args.perf = True
+ return (args.cl, args.size, args.perf, args.continuous,
+ args.verbose, args.username, password)
-def run_test_sequence(cl, size, language, perf, username, password):
+def run_test_sequence(cl, size, perf, username, password):
# The buildbot already builds and syncs to a specific revision. Don't fight
# with it or replicate work.
if sync_and_build() == 1:
@@ -751,8 +676,6 @@ def run_test_sequence(cl, size, language, perf, username, password):
CompileTimeAndSizeTest(TIME_SIZE).run()
if cl:
CommandLinePerformanceTest(CL_PERF).run()
- if language:
- BrowserCorrectnessTest('language', BROWSER_CORRECTNESS).run()
if perf:
BrowserPerformanceTest(BROWSER_PERF).run()
@@ -761,16 +684,16 @@ def run_test_sequence(cl, size, language, perf, username, password):
def main():
global VERBOSE
- (cl, size, language, perf, continuous, verbose, username, password) = parse_args()
+ (cl, size, perf, continuous, verbose, username, password) = parse_args()
VERBOSE = verbose
if continuous:
while True:
if has_new_code():
- run_test_sequence(cl, size, language, perf, username, password)
+ run_test_sequence(cl, size, perf, username, password)
else:
time.sleep(SLEEP_TIME)
else:
- run_test_sequence(cl, size, language, perf, username, password)
+ run_test_sequence(cl, size, perf, username, password)
if __name__ == '__main__':
main()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698