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

Side by Side Diff: runtime/tests/vm/dart/inline_stack_frame_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 4
5 // VMOptions=--optimization_counter_threshold=10 5 // VMOptions=--optimization_counter_threshold=10 --no-background-compilation
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 8
9 // This test tries to verify that we produce the correct stack trace when 9 // This test tries to verify that we produce the correct stack trace when
10 // throwing exceptions even when functions are inlined. 10 // throwing exceptions even when functions are inlined.
11 // The test invokes a bunch of functions and then does a throw. There is a 11 // The test invokes a bunch of functions and then does a throw. There is a
12 // catch at the outer function which uses the stack trace produced to return 12 // catch at the outer function which uses the stack trace produced to return
13 // a string. The test then verifies that the stack trace contains each 13 // a string. The test then verifies that the stack trace contains each
14 // method in the invocation chain. The test is run during warmup to ensure 14 // method in the invocation chain. The test is run during warmup to ensure
15 // unoptimized code produces the correct result and is then run 15 // unoptimized code produces the correct result and is then run
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 for (var i = 0; i <= 10; i++) { 69 for (var i = 0; i <= 10; i++) {
70 result = x.func1(i); 70 result = x.func1(i);
71 } 71 }
72 Expect.isTrue(result.contains("show me inlined functions")); 72 Expect.isTrue(result.contains("show me inlined functions"));
73 Expect.isTrue(result.contains("Test.func1")); 73 Expect.isTrue(result.contains("Test.func1"));
74 Expect.isTrue(result.contains("Test.func2")); 74 Expect.isTrue(result.contains("Test.func2"));
75 Expect.isTrue(result.contains("Test.func3")); 75 Expect.isTrue(result.contains("Test.func3"));
76 Expect.isTrue(result.contains("Test.func4")); 76 Expect.isTrue(result.contains("Test.func4"));
77 Expect.isTrue(result.contains("Test.func5")); 77 Expect.isTrue(result.contains("Test.func5"));
78 } 78 }
OLDNEW
« no previous file with comments | « runtime/tests/vm/dart/byte_array_test.dart ('k') | tests/corelib/big_integer_arith_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698