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

Side by Side Diff: test/codegen/corelib/stacktrace_current_test.dart

Issue 1945153002: Add corelib tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: error_test and range_error_test now pass Created 4 years, 7 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
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
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.
4
5 import "dart:convert" show LineSplitter;
6
7 import "package:expect/expect.dart";
8
9 void main() {
10 var st0;
11 var st1;
12 // Primitive way to get stack trace,.
13 try { throw 0; } catch (_, s) { st0 = s; }
14 st1 = StackTrace.current;
15
16 var st0s = findMain(st0);
17 var st1s = findMain(st1);
18 // Stack traces are not equal (contains at least a different line number,
19 // and possible different frame numbers).
20 // They are *similar*, so check that they agree on everything but numbers.
21 var digits = new RegExp(r"\d+");
22 Expect.equals(st0s.replaceAll(digits, "0"), st1s.replaceAll(digits, "0"));
23 }
24
25 String findMain(StackTrace stack) {
26 var string = "$stack";
27 var lines = LineSplitter.split(string).toList();
28 while (lines.isNotEmpty && !lines.first.contains("main")) {
29 lines.removeAt(0);
30 }
31 return lines.join("\n");
32 }
OLDNEW
« no previous file with comments | « test/codegen/corelib/splay_tree_test.dart ('k') | test/codegen/corelib/stacktrace_fromstring_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698