| Index: pkg/compiler/tool/status_files/record.dart
|
| diff --git a/pkg/compiler/tool/status_files/record.dart b/pkg/compiler/tool/status_files/record.dart
|
| index c829bae89d4805ee0f64bcbb6a9e67f532f16ab2..f2a6e975274dbacfecead529fa3c77f88f9431ab 100644
|
| --- a/pkg/compiler/tool/status_files/record.dart
|
| +++ b/pkg/compiler/tool/status_files/record.dart
|
| @@ -15,6 +15,8 @@ class Record implements Comparable<Record> {
|
| final String actual;
|
| final String repro;
|
| final String reason;
|
| + final String fullReason;
|
| + final List<String> stack;
|
|
|
| // TODO(sigmund): extract also a failure reason if any (e.g. a stack trace or
|
| // error message for crashes).
|
| @@ -22,7 +24,7 @@ class Record implements Comparable<Record> {
|
| bool get isPassing => actual == 'Pass';
|
|
|
| Record(this.suite, this.test, this.config, this.expected, this.actual,
|
| - this.reason, this.repro);
|
| + this.reason, this.repro, this.fullReason, this.stack);
|
|
|
| int compareTo(Record other) {
|
| if (suite == null && other.suite != null) return -1;
|
|
|