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

Side by Side Diff: tests/language/vm/math_vm_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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Tests that the VM does not crash on weird corner cases of class Math. 4 // Tests that the VM does not crash on weird corner cases of class Math.
5 // VMOptions=--optimization_counter_threshold=100 5 // VMOptions=--optimization_counter_threshold=100 --no-background_compilation
6 6
7 library math_vm_test; 7 library math_vm_test;
8 8
9 import "package:expect/expect.dart"; 9 import "package:expect/expect.dart";
10 import 'dart:math'; 10 import 'dart:math';
11 11
12 class FakeNumber { 12 class FakeNumber {
13 const FakeNumber(); 13 const FakeNumber();
14 void toDouble() {} 14 void toDouble() {}
15 } 15 }
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 main() { 53 main() {
54 const double value = 1.54; 54 const double value = 1.54;
55 final firstRes = testSinCos(value); 55 final firstRes = testSinCos(value);
56 for (int i = 0; i < 200; i++) { 56 for (int i = 0; i < 200; i++) {
57 MathTest.testMain(); 57 MathTest.testMain();
58 testDoublePow(); 58 testDoublePow();
59 testSinCos(value); 59 testSinCos(value);
60 } 60 }
61 Expect.equals(firstRes, testSinCos(value)); 61 Expect.equals(firstRes, testSinCos(value));
62 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698