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

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

Issue 1759973002: Add --no-background-compilation to tests that expect to run code in optimized form (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: more Created 4 years, 9 months 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
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 --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
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 }
OLDNEW
« no previous file with comments | « tests/language/div_with_power_of_two2_test.dart ('k') | tests/language/double_int_addition_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698