| Index: tests/compiler/dart2js/async_await_syntax_test.dart
|
| diff --git a/tests/compiler/dart2js/async_await_syntax_test.dart b/tests/compiler/dart2js/async_await_syntax_test.dart
|
| index 8e0e6513eee9bf223fb623fa4d739463a3ca58be..336a7cd0545dd641da236e515286ff0683f22e67 100644
|
| --- a/tests/compiler/dart2js/async_await_syntax_test.dart
|
| +++ b/tests/compiler/dart2js/async_await_syntax_test.dart
|
| @@ -7,9 +7,15 @@
|
|
|
| import 'frontend_checker.dart';
|
|
|
| -const List<String> TESTS = const <String>[
|
| - 'language/async_await_syntax_test.dart',
|
| -];
|
| +/// Map of test files to run together with their associated whitelist.
|
| +///
|
| +/// For instance
|
| +/// 'language/async_await_syntax_test.dart': const ['a03b', 'a04b']
|
| +/// includes the multitest in 'language/async_await_syntax_test.dart' but
|
| +/// expects the subtests 'a03b' and 'a04c' to fail.
|
| +const Map<String, List<String>> TESTS = const <String, List<String>>{
|
| + 'language/async_await_syntax_test.dart': const [],
|
| +};
|
|
|
| void main(List<String> arguments) {
|
| check(TESTS, arguments: arguments, options: ['--enable-async']);
|
|
|