Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(462)

Side by Side Diff: dart/tests/language/div_with_power_of_two2_test.dart

Issue 60293003: Version 0.8.10.5 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/tests/html/isolates_test.dart ('k') | dart/tests/language/dynamic_prefix_core_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
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), 101 Expect.throws(() => divBy0(4),
102 (e) => e is IntegerDivisionByZeroException 102 (e) => e is IntegerDivisionByZeroException
103 || e is RuntimeError); 103 || e is UnsupportedError);
104 } 104 }
105 } 105 }
OLDNEW
« no previous file with comments | « dart/tests/html/isolates_test.dart ('k') | dart/tests/language/dynamic_prefix_core_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698