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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } | 101 } |
102 } | 102 } |
OLD | NEW |