| 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 --no-background-co
mpilation |
| 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]]. |
| 11 var expectedResults = | 11 var expectedResults = |
| 12 [ [divBy1, | 12 [ [divBy1, |
| 13 [[134217730, 134217730], | 13 [[134217730, 134217730], |
| 14 [-134217730, -134217730], | 14 [-134217730, -134217730], |
| 15 [10, 10], | 15 [10, 10], |
| 16 [-10, -10]]], | 16 [-10, -10]]], |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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), | 101 Expect.throws(() => divBy0(4), |
| 102 (e) => e is IntegerDivisionByZeroException | 102 (e) => e is IntegerDivisionByZeroException |
| 103 || e is UnsupportedError); | 103 || e is UnsupportedError); |
| 104 } | 104 } |
| 105 } | 105 } |
| OLD | NEW |