7dbf8eed3b
Splits strong_test into 4 shards. This test took 4+ minutes locally with the fast_strong_test and analyze_test ticking in at ~1:45. This change makes local testing of frontend unittests take 2 instead of 4 minutes in total. Change-Id: Id6015de86d547b209a699b1e5196b3edad1e6977 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/114501 Reviewed-by: Jens Johansen <jensj@google.com>
33 lines
846 B
Dart
33 lines
846 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, debugging: false), "ddk",
|
|
const ["ddk", "ddc"]),
|
|
];
|
|
}
|
|
}
|
|
|
|
void main(List<String> arguments) =>
|
|
runMe(arguments, createContext, configurationPath: "testing.json");
|