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

Unified Diff: tests/language/src/GenericInstanceofTest.dart

Issue 10198033: Add more subtype checks, and repeat them so that any inlined checks can be tested as well (first te… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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: tests/language/src/GenericInstanceofTest.dart
===================================================================
--- tests/language/src/GenericInstanceofTest.dart (revision 7030)
+++ tests/language/src/GenericInstanceofTest.dart (working copy)
@@ -7,5 +7,8 @@
#source("GenericInstanceof.dart");
main() {
- GenericInstanceof.testMain();
+ // Repeat type checks so that inlined tests can be tested as well.
+ for (int i = 0; i < 5; i++) {
+ GenericInstanceof.testMain();
+ }
}

Powered by Google App Engine
This is Rietveld 408576698