-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathstacktrace_current_test.dart
38 lines (33 loc) · 1.14 KB
/
stacktrace_current_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import "dart:convert" show LineSplitter;
import "package:expect/expect.dart";
void main() {
var st0;
var st1;
// Primitive way to get stack trace,.
try {
throw 0;
} catch (_, s) {
st0 = s;
}
st1 = StackTrace.current;
var st0s = findMain(st0);
var st1s = findMain(st1);
// Stack traces are not equal (contains at least a different line number, and
// possibly different frame numbers).
// They are *similar*, so check that they agree on everything but numbers.
// Also match hex digits as V8 (used by dart2wasm) shows function offsets in
// hex.
final digits = new RegExp(r"(0[xX][0-9a-fA-F]+)|\d+");
Expect.equals(st0s.replaceAll(digits, "0"), st1s.replaceAll(digits, "0"));
}
String findMain(StackTrace stack) {
var string = "$stack";
var lines = LineSplitter.split(string).toList();
while (lines.isNotEmpty && !lines.first.contains("main")) {
lines.removeAt(0);
}
return lines.join("\n");
}