OLD | NEW |
---|---|
1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 # Skip entire suite if not running in strong mode. | 5 # Skip entire suite if not running in strong mode. |
6 [ ! $strong ] | 6 [ ! $strong ] |
7 *: SkipByDesign | 7 *: SkipByDesign |
8 | 8 |
9 # Skip tests that are not yet strong-mode clean. | 9 # Skip tests that are not yet strong-mode clean. |
10 [ $strong ] | 10 [ $strong ] |
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
638 unresolved_default_constructor_test: Skip | 638 unresolved_default_constructor_test: Skip |
639 unresolved_in_factory_negative_test: Skip | 639 unresolved_in_factory_negative_test: Skip |
640 unresolved_top_level_method_negative_test: Skip | 640 unresolved_top_level_method_negative_test: Skip |
641 unresolved_top_level_var_negative_test: Skip | 641 unresolved_top_level_var_negative_test: Skip |
642 unsigned_right_shift_test: Skip | 642 unsigned_right_shift_test: Skip |
643 unsupported_operators_test: Skip | 643 unsupported_operators_test: Skip |
644 variable_declaration_metadata_test: Skip | 644 variable_declaration_metadata_test: Skip |
645 void_type_test: Skip | 645 void_type_test: Skip |
646 wrong_number_type_arguments_test: Skip | 646 wrong_number_type_arguments_test: Skip |
647 | 647 |
648 [ $compiler == dart2analyzer && $strong ] | 648 [$compiler == dart2analyzer && $strong ] |
sortie
2017/08/07 11:37:10
A space is missing here.
| |
649 # async_await_test/02: CompileTimeError # Issue 28823 | 649 # async_await_test/02: CompileTimeError # Issue 28823 |
650 # async_await_test/03: CompileTimeError # Issue 28823 | 650 # async_await_test/03: CompileTimeError # Issue 28823 |
651 # async_await_test/none: CompileTimeError # Issue 28823 | 651 # async_await_test/none: CompileTimeError # Issue 28823 |
652 # async_star_test/01: CompileTimeError # Issue 28823 | 652 # async_star_test/01: CompileTimeError # Issue 28823 |
653 # async_star_test/02: CompileTimeError # Issue 28823 | 653 # async_star_test/02: CompileTimeError # Issue 28823 |
654 # async_star_test/03: CompileTimeError # Issue 28823 | 654 # async_star_test/03: CompileTimeError # Issue 28823 |
655 # async_star_test/04: CompileTimeError # Issue 28823 | 655 # async_star_test/04: CompileTimeError # Issue 28823 |
656 # async_star_test/05: CompileTimeError # Issue 28823 | 656 # async_star_test/05: CompileTimeError # Issue 28823 |
657 # async_star_test/none: CompileTimeError # Issue 28823 | 657 # async_star_test/none: CompileTimeError # Issue 28823 |
658 bit_operations_test/01: MissingStaticWarning # Issue 28823 | 658 bit_operations_test/01: MissingStaticWarning # Issue 28823 |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
833 type_variable_nested_test: RuntimeError # Issue 29920 | 833 type_variable_nested_test: RuntimeError # Issue 29920 |
834 type_variable_typedef_test: RuntimeError # Issue 29920 | 834 type_variable_typedef_test: RuntimeError # Issue 29920 |
835 | 835 |
836 # This test does not generate the expected compile time error, but it also does | 836 # This test does not generate the expected compile time error, but it also does |
837 # not behave correctly at runtime. We cannot record this as "Fail" without | 837 # not behave correctly at runtime. We cannot record this as "Fail" without |
838 # confusing the DDC travis bot (as "Fail" is normally used for compile time | 838 # confusing the DDC travis bot (as "Fail" is normally used for compile time |
839 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot | 839 # failures of _negative_tests). Remove "Skip" once we have the DDC travis bot |
840 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput | 840 # running on test.dart, OR when we fix dartanalyzer/dartdevc CommandOutput |
841 # classes to invert negative test status in the same way our other tools do. | 841 # classes to invert negative test status in the same way our other tools do. |
842 prefix10_negative_test: Skip # Issue 29920 | 842 prefix10_negative_test: Skip # Issue 29920 |
843 | |
844 [ $compiler == dartdevc && $system == windows ] | |
845 multiline_strings_test: RuntimeError # Issue 30336 | |
846 raw_string_test: RuntimeError # Issue 30336 | |
OLD | NEW |