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

Unified Diff: tests/lib/mirrors/invocation_fuzz_test.dart

Issue 825403003: Fix http://dartbug.com/21834 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« sdk/lib/io/timer_impl.dart ('K') | « sdk/lib/io/timer_impl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/invocation_fuzz_test.dart
===================================================================
--- tests/lib/mirrors/invocation_fuzz_test.dart (revision 42617)
+++ tests/lib/mirrors/invocation_fuzz_test.dart (working copy)
@@ -32,7 +32,9 @@
// These prevent the test from exiting.
'dart.io.sleep',
'dart.io.HttpServer.HttpServer.listenOn',
- new RegExp('dart\.io.*'), /// smi: ok
+ new RegExp('dart\.io\..*'), /// smi: ok
+ new RegExp('dart\.io\._Timer\..*'),
+ new RegExp('dart\.isolate\..*'),
// Runtime exceptions we can't catch because they occur too early in event
// dispatch to be caught in a zone.
@@ -176,7 +178,7 @@
var valueObjects =
[true, false, null, [], {}, dynamic,
0, 0xEFFFFFF, 0xFFFFFFFF, 0xFFFFFFFFFFFFFFFF, 3.14159,
- "foo", 'blåbærgrød', 'Îñţérñåţîöñåļîžåţîờñ', "𝄞", #symbol];
+ "foo", 'blåbærgrød', 'Îñţérñåţîöñåļîžåţîờñ', "턞", #symbol];
Ivan Posva 2015/01/07 00:13:09 Ryan, what was the expected /xyz encoding here?
rmacnak 2015/01/07 00:29:25 This was "\u{1D11E}", or whatever string you like
Ivan Posva 2015/01/07 20:52:01 Thanks!
valueObjects.forEach((v) => checkInstance(reflect(v), 'value object'));
uncaughtErrorHandler(self, parent, zone, error, stack) {};
« sdk/lib/io/timer_impl.dart ('K') | « sdk/lib/io/timer_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698