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>
23 lines
595 B
Dart
23 lines
595 B
Dart
import 'package:testing/testing.dart';
|
|
|
|
import 'common.dart';
|
|
import 'ddc_common.dart';
|
|
import 'sourcemaps_ddc_suite.dart' as ddc;
|
|
|
|
Future<ChainContext> createContext(
|
|
Chain suite, Map<String, String> environment) async {
|
|
return StackTraceContext();
|
|
}
|
|
|
|
class StackTraceContext extends ChainContextWithCleanupHelper {
|
|
@override
|
|
final List<Step> steps = <Step>[
|
|
const Setup(),
|
|
const SetCwdToSdkRoot(),
|
|
const TestStackTrace(ddc.DevCompilerRunner(false), "ddc", ["ddc", "ddk"]),
|
|
];
|
|
}
|
|
|
|
void main(List<String> arguments) =>
|
|
runMe(arguments, createContext, "testing.json");
|