blob: 6e932bd81d70d77780b07ea9969457231569d9ec [file] [log] [blame]
// Copyright (c) 2016, 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.
import 'package:analyzer/src/dart/analysis/driver.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'summary_common.dart';
import 'test_strategies.dart';
main() {
if (AnalysisDriver.useSummary2) return;
defineReflectiveSuite(() {
defineReflectiveTests(PrelinkerTest);
});
}
/// Tests for the pre-linker which exercise it using the old (two-phase) summary
/// generation strategy.
///
/// TODO(paulberry): eliminate these tests once we have transitioned over to
/// one-step summary generation.
@reflectiveTest
class PrelinkerTest extends SummaryBlackBoxTestStrategyPrelink
with SummaryTestCases {}