Chromium Code Reviews| Index: runtime/tests/vm/dart/inline_stack_frame_test.dart |
| =================================================================== |
| --- runtime/tests/vm/dart/inline_stack_frame_test.dart (revision 22181) |
| +++ runtime/tests/vm/dart/inline_stack_frame_test.dart (working copy) |
| @@ -64,7 +64,7 @@ |
| Expect.isTrue(result.contains("Test.func3")); |
| Expect.isTrue(result.contains("Test.func4")); |
| Expect.isTrue(result.contains("Test.func")); |
| - for (var i = 0; i <= 200; i++) { |
| + for (var i = 0; i <= 100; i++) { |
| result = x.func1(i); |
| } |
|
siva
2013/04/30 17:24:21
Maybe add
// VMOptions=--optimization_counter_thr
zra
2013/04/30 18:01:39
If this loop counter is made this much smaller, th
regis
2013/05/01 21:09:46
Done.
regis
2013/05/01 21:09:46
Yes, I had to reduce it to 520.
|
| Expect.isTrue(result.contains("show me inlined functions")); |