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

Issue 9178022: Fix test.dart to have the same behavior as test.py for --frog and --froglib. (Closed)

Created:
8 years, 11 months ago by Emily Fortuna
Modified:
8 years, 11 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Fix test.dart to have the same behavior as test.py for --frog and --froglib. (Fixing Issue 1046) Committed: https://code.google.com/p/dart/source/detail?r=3366

Patch Set 1 #

Patch Set 2 : '' #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+19 lines, -5 lines) Patch
M tools/testing/dart/test_options.dart View 1 chunk +9 lines, -3 lines 0 comments Download
M tools/testing/dart/test_suite.dart View 1 3 chunks +10 lines, -2 lines 1 comment Download

Messages

Total messages: 3 (0 generated)
Emily Fortuna
8 years, 11 months ago (2012-01-17 18:20:45 UTC) #1
Bill Hesse
LGTM.
8 years, 11 months ago (2012-01-17 18:25:33 UTC) #2
Bill Hesse
8 years, 11 months ago (2012-01-19 16:31:28 UTC) #3
https://chromiumcodereview.appspot.com/9178022/diff/3001/tools/testing/dart/t...
File tools/testing/dart/test_suite.dart (right):

https://chromiumcodereview.appspot.com/9178022/diff/3001/tools/testing/dart/t...
tools/testing/dart/test_suite.dart:936: var name = configuration['frog'];
I don't think we want --frog to override the dartc path if component =
'chromium' or 'dartc'.  This could happen with
test.dart -cchromium,frogium --frog=i_built/this/frogsh.
Could this be
if (configuration['frog'] != '' && (configuration['component'] == 'frogium' ||
... 'webkit')) {
 name = configuration['frog'];
} else {
 name = ....
}

Powered by Google App Engine
This is Rietveld 408576698