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

Side by Side Diff: media/base/run_all_perftests.cc

Issue 128593002: GTTF: Run perf tests serially (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2014 Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/test/run_all_perftests.cc ('k') | media/media.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/test/launcher/unit_test_launcher.h" 7 #include "base/test/launcher/unit_test_launcher.h"
8 #include "base/test/test_suite.h" 8 #include "base/test/test_suite.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "media/base/media.h" 10 #include "media/base/media.h"
11 #include "media/base/media_switches.h" 11 #include "media/base/media_switches.h"
(...skipping 27 matching lines...) Expand all
39 // Run this here instead of main() to ensure an AtExitManager is already 39 // Run this here instead of main() to ensure an AtExitManager is already
40 // present. 40 // present.
41 media::InitializeMediaLibraryForTesting(); 41 media::InitializeMediaLibraryForTesting();
42 CommandLine* cmd_line = CommandLine::ForCurrentProcess(); 42 CommandLine* cmd_line = CommandLine::ForCurrentProcess();
43 cmd_line->AppendSwitch(switches::kEnableMP3StreamParser); 43 cmd_line->AppendSwitch(switches::kEnableMP3StreamParser);
44 } 44 }
45 45
46 int main(int argc, char** argv) { 46 int main(int argc, char** argv) {
47 TestSuiteNoAtExit test_suite(argc, argv); 47 TestSuiteNoAtExit test_suite(argc, argv);
48 48
49 return base::LaunchUnitTests( 49 // Always run the perf tests serially, to avoid distorting
50 // perf measurements with randomness resulting from running
51 // in parallel.
52 return base::LaunchUnitTestsSerially(
50 argc, argv, base::Bind(&TestSuiteNoAtExit::Run, 53 argc, argv, base::Bind(&TestSuiteNoAtExit::Run,
51 base::Unretained(&test_suite))); 54 base::Unretained(&test_suite)));
52 } 55 }
OLDNEW
« no previous file with comments | « content/test/run_all_perftests.cc ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698