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

Unified Diff: test/browser/language_tests.js

Issue 1962823002: fix #552, Object members on native types (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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: test/browser/language_tests.js
diff --git a/test/browser/language_tests.js b/test/browser/language_tests.js
index 826284f4e95c1fa8a1dd265dfde981a2087e443b..519304f751c852300477dfb75786400ae0a76f93 100644
--- a/test/browser/language_tests.js
+++ b/test/browser/language_tests.js
@@ -84,6 +84,10 @@
'cha_deopt1_test': skip_fail,
'cha_deopt2_test': skip_fail,
'cha_deopt3_test': skip_fail,
+
+ // interpolation does not call Dart's toString:
+ // https://github.com/dart-lang/dev_compiler/issues/470
+ 'class_syntax2_test': skip_fail,
'classes_static_method_clash_test': skip_fail,
'closure_call_wrong_argument_count_negative_test': skip_fail,
'closure_in_constructor_test': skip_fail,
@@ -430,7 +434,6 @@
'list_replace_range_test': fail,
'list_set_all_test': fail,
'list_to_string2_test': fail,
- 'list_to_string_test': fail,
'main_test': fail,
'map_keys2_test': fail,
'map_to_string_test': fail,
@@ -694,7 +697,7 @@
return null;
} catch (e) {
return e;
- };
+ }
}
test(name, function(done) { // 'function' to allow `this.timeout`.

Powered by Google App Engine
This is Rietveld 408576698