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

Unified Diff: pkg/polymer/test/build/common.dart

Issue 178193007: [polymer] fix import inliner to only rewrite URL attributes once per node (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
Index: pkg/polymer/test/build/common.dart
diff --git a/pkg/polymer/test/build/common.dart b/pkg/polymer/test/build/common.dart
index be187ca393c39e34f43767dd4cdb08eac15e3ceb..c07a7d818afc1896693750448f70b3560d5369e8 100644
--- a/pkg/polymer/test/build/common.dart
+++ b/pkg/polymer/test/build/common.dart
@@ -123,8 +123,8 @@ class TestHelper implements PackageProvider {
testPhases(String testName, List<List<Transformer>> phases,
Map<String, String> inputFiles, Map<String, String> expectedFiles,
- [List<String> expectedMessages]) {
- test(testName, () {
+ [List<String> expectedMessages, bool solo = false]) {
Jennifer Messerly 2014/02/27 20:58:02 this can go, but has been helpful for debugging
+ (solo ? solo_test : test)(testName, () {
var helper = new TestHelper(phases, inputFiles, expectedMessages)..run();
return helper.checkAll(expectedFiles).then((_) => helper.tearDown());
});

Powered by Google App Engine
This is Rietveld 408576698