78224f9b0c
Supports markers like `cfe|analyzer.` to annotated that the expected result is for both `cfe` and `analyzer`. Change-Id: Ie69809db5f63a9ee9b87ff1513b819fe85ce0bce Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/110500 Reviewed-by: Paul Berry <paulberry@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
33 lines
817 B
Dart
33 lines
817 B
Dart
import 'package:front_end/src/api_unstable/ddc.dart' as fe;
|
|
import 'package:testing/testing.dart';
|
|
|
|
import 'common.dart';
|
|
import 'ddc_common.dart';
|
|
import 'sourcemaps_ddk_suite.dart' as ddk;
|
|
|
|
Future<ChainContext> createContext(
|
|
Chain suite, Map<String, String> environment) async {
|
|
return StackTraceContext();
|
|
}
|
|
|
|
class StackTraceContext extends ChainContextWithCleanupHelper
|
|
implements WithCompilerState {
|
|
@override
|
|
fe.InitializedCompilerState compilerState;
|
|
|
|
List<Step> _steps;
|
|
|
|
@override
|
|
List<Step> get steps {
|
|
return _steps ??= <Step>[
|
|
const Setup(),
|
|
const SetCwdToSdkRoot(),
|
|
TestStackTrace(
|
|
ddk.DevCompilerRunner(this, false), "ddk", const ["ddk", "ddc"]),
|
|
];
|
|
}
|
|
}
|
|
|
|
void main(List<String> arguments) =>
|
|
runMe(arguments, createContext, "testing.json");
|