| Index: tests/language/identical_test.dart
|
| ===================================================================
|
| --- tests/language/identical_test.dart (revision 24922)
|
| +++ tests/language/identical_test.dart (working copy)
|
| @@ -2,6 +2,7 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
| // Test efficient and correct implementation of !identical(a, b).
|
| +// VMOptions=--optimization-counter-threshold=10
|
|
|
| import 'package:expect/expect.dart';
|
|
|
| @@ -30,7 +31,7 @@
|
| }
|
|
|
| main() {
|
| - for (int i = 0; i < 10000; i++) {
|
| + for (int i = 0; i < 20; i++) {
|
| Expect.equals(1, notIdenticalTest1("ho"));
|
| Expect.equals(1, notIdenticalTest2("ho"));
|
| Expect.equals(false, notIdenticalTest3("ho"));
|
|
|