blob: d87deb5f5ae60616c86082303395565d4b2a0234 [file] [log] [blame]
// Copyright (c) 2019, 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.
@Tags(['daily'])
@Timeout(Duration(minutes: 2))
library;
import 'package:dwds/src/services/expression_compiler.dart';
import 'package:test/test.dart';
import 'package:test_common/test_sdk_configuration.dart';
import '../fixtures/context.dart';
import 'common/instance_common.dart';
void main() {
// Enable verbose logging for debugging.
final debug = false;
final canaryFeatures = false;
final moduleFormat = ModuleFormat.amd;
group('canary: $canaryFeatures |', () {
final provider = TestSdkConfigurationProvider(
canaryFeatures: canaryFeatures,
verbose: debug,
ddcModuleFormat: moduleFormat,
);
tearDownAll(provider.dispose);
for (final compilationMode in CompilationMode.values) {
runTypeSystemVerificationTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
debug: debug,
);
runTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
debug: debug,
);
}
});
}