Chromium Code Reviews| Index: tests/language/src/Instanceof2Test.dart |
| =================================================================== |
| --- tests/language/src/Instanceof2Test.dart (revision 7030) |
| +++ tests/language/src/Instanceof2Test.dart (working copy) |
| @@ -97,5 +97,9 @@ |
| } |
| main() { |
| - InstanceofTest.testMain(); |
| + // Repeat type checks so that inlined tests can be tested as well. |
| + for (int i = 0; i < 5; i++) { |
| + InstanceofTest.testMain(); |
| + } |
| } |
| + |