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

Issue 269016: Adds a command-line option for specifying a particular build to test and for ... (Closed)

Created:
11 years, 2 months ago by kkania
Modified:
9 years, 7 months ago
Reviewers:
kuchhal
CC:
chromium-reviews_googlegroups.com, ananthak_chromium.org, tim (not reviewing), Paweł Hajdan Jr.
Visibility:
Public.

Description

Adds a command-line option for specifying a particular build to test and for permitting the tests to be run regardless of the underlying platform. Also some minor fixes and cleanup, such as changing stable and dev versions to 3 and 4. BUG=none TEST=none

Patch Set 1 #

Patch Set 2 : '' #

Patch Set 3 : '' #

Total comments: 13

Patch Set 4 : '' #

Patch Set 5 : '' #

Total comments: 8

Patch Set 6 : '' #

Patch Set 7 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+262 lines, -255 lines) Patch
M chrome/test/mini_installer_test/chrome_mini_installer.h View 1 2 3 4 5 6 5 chunks +26 lines, -17 lines 0 comments Download
M chrome/test/mini_installer_test/chrome_mini_installer.cc View 1 2 3 4 5 6 4 chunks +84 lines, -68 lines 0 comments Download
M chrome/test/mini_installer_test/mini_installer_test_util.h View 1 2 3 4 5 6 1 chunk +6 lines, -4 lines 0 comments Download
M chrome/test/mini_installer_test/mini_installer_test_util.cc View 1 2 3 4 5 6 6 chunks +52 lines, -36 lines 0 comments Download
M chrome/test/mini_installer_test/run_all_unittests.cc View 1 2 3 4 5 6 2 chunks +13 lines, -5 lines 0 comments Download
M chrome/test/mini_installer_test/test.cc View 1 2 3 4 5 6 1 chunk +81 lines, -125 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
kkania
11 years, 2 months ago (2009-10-08 01:32:56 UTC) #1
kuchhal
I have only looked at half the files yet. I would like to clarify the ...
11 years, 2 months ago (2009-10-08 21:34:32 UTC) #2
Ken Kania
Originally, one run tested both the latest dev and stable channels. This change allows the ...
11 years, 2 months ago (2009-10-08 22:42:56 UTC) #3
kkania
Fixed reviewer's comments.
11 years, 2 months ago (2009-10-12 22:12:49 UTC) #4
kuchhal
11 years, 2 months ago (2009-10-13 18:53:09 UTC) #5
lgtm.

some nits below.

http://codereview.chromium.org/269016/diff/9001/9005
File chrome/test/mini_installer_test/chrome_mini_installer.cc (right):

http://codereview.chromium.org/269016/diff/9001/9005#newcode113
Line 113: FAIL();
Not necessary to do in this change but at some time it would be good to get rid
of these redundant printf statements. A successful test should not print any
statements (if it passed that means everything worked). And in case of failure
the error message should be given to the FAIL method.

http://codereview.chromium.org/269016/diff/9001/9007
File chrome/test/mini_installer_test/chrome_mini_installer.h (right):

http://codereview.chromium.org/269016/diff/9001/9007#newcode68
Line 68: // The name of the browser/installation-type of this installer.
remove this comment as it is duplicate of next one.

http://codereview.chromium.org/269016/diff/9001/9003
File chrome/test/mini_installer_test/test.cc (right):

http://codereview.chromium.org/269016/diff/9001/9003#newcode26
Line 26: ChromeMiniInstaller *user_inst_, *sys_inst_;
just use scoped_ptr to be more safe and remove the explicit delete statements

http://codereview.chromium.org/269016/diff/9001/9003#newcode38
Line 38: const CommandLine * cmd = CommandLine::ForCurrentProcess();
remove space before *

http://codereview.chromium.org/269016/diff/9001/9003#newcode41
Line 41: build = L"latest";
{ } not required.

http://codereview.chromium.org/269016/diff/9001/9003#newcode71
Line 71: printf("These tests don't run on this platform\n");
I now this was already there but this printf is redundant since the same error
message is getting printed in Setup(). By using scoped_ptr you can completely
remove this TearDown(0 method.

http://codereview.chromium.org/269016/diff/9001/9003#newcode79
Line 79: // previous installers accessible from our Google Chrome continuous
buildbot.
Since you are changing the define to GOOGLE_CHROME_BUILD, remove this comment?

http://codereview.chromium.org/269016/diff/9001/9003#newcode158
Line 158: if (!force_tests_)
why this additional check?

Powered by Google App Engine
This is Rietveld 408576698