blob: be95dd443ea99d6a2aae52beee44f94e21db3354 [file] [log] [blame] [edit]
// 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))
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;
group('canary: $canaryFeatures |', () {
final provider = TestSdkConfigurationProvider(
canaryFeatures: canaryFeatures,
verbose: debug,
);
tearDownAll(provider.dispose);
for (var compilationMode in CompilationMode.values) {
runTypeSystemVerificationTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
debug: debug,
);
runTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
debug: debug,
);
}
});
}