| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // Test division by power of two. | 4 // Test division by power of two. |
| 5 // Test that results before and after optimization are the same. | 5 // Test that results before and after optimization are the same. |
| 6 // VMOptions=--optimization-counter-threshold=10 --no-use-osr | 6 // VMOptions=--optimization-counter-threshold=10 --no-use-osr |
| 7 | 7 |
| 8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 9 | 9 |
| 10 // [function, [list of tuples argument/result]]. | 10 // [function, [list of tuples argument/result]]. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 for (int i = 0; i < 20; i++) { | 91 for (int i = 0; i < 20; i++) { |
| 92 for (var e in expectedResults) { | 92 for (var e in expectedResults) { |
| 93 Function f = e[0]; | 93 Function f = e[0]; |
| 94 List values = e[1]; | 94 List values = e[1]; |
| 95 for (var v in values) { | 95 for (var v in values) { |
| 96 int arg = v[0]; | 96 int arg = v[0]; |
| 97 int res = v[1]; | 97 int res = v[1]; |
| 98 Expect.equals(res, f(arg)); | 98 Expect.equals(res, f(arg)); |
| 99 } | 99 } |
| 100 } | 100 } |
| 101 Expect.throws(() => divBy0(4), | |
| 102 (e) => e is IntegerDivisionByZeroException | |
| 103 || e is UnsupportedError); | |
| 104 } | 101 } |
| 105 } | 102 } |
| OLD | NEW |