Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 [ $compiler == dart2dart] | 5 [ $compiler == dart2dart] |
| 6 bool_from_environment2_test: Skip | 6 bool_from_environment2_test: Skip |
| 7 bool_from_environment_default_value_test: Skip | 7 bool_from_environment_default_value_test: Skip |
| 8 bool_from_environment_test: Skip | 8 bool_from_environment_test: Skip |
| 9 from_environment_const_type_test: Skip | 9 from_environment_const_type_test: Skip |
| 10 from_environment_const_type_undefined_test: Skip | 10 from_environment_const_type_undefined_test: Skip |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 44 # #void should be a valid symbol. | 44 # #void should be a valid symbol. |
| 45 [ $compiler == none || $compiler == dart2js || $compiler == dart2dart ] | 45 [ $compiler == none || $compiler == dart2js || $compiler == dart2dart ] |
| 46 symbol_reserved_word_test/02: CompileTimeError # bug 20191 | 46 symbol_reserved_word_test/02: CompileTimeError # bug 20191 |
| 47 symbol_reserved_word_test/05: CompileTimeError # bug 20191 | 47 symbol_reserved_word_test/05: CompileTimeError # bug 20191 |
| 48 | 48 |
| 49 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co ntentShellOnAndroid) ] | 49 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co ntentShellOnAndroid) ] |
| 50 symbol_reserved_word_test/02: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors | 50 symbol_reserved_word_test/02: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors |
| 51 symbol_reserved_word_test/05: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors | 51 symbol_reserved_word_test/05: RuntimeError # bug 20191 / dartium/drt cannot dete ct CompileTimeErrors |
| 52 | 52 |
| 53 # new Symbol('void') should be allowed. | 53 # new Symbol('void') should be allowed. |
| 54 [ $compiler == dart2js ] | 54 [ $compiler == dart2js ] |
|
ricow1
2015/03/03 12:20:34
could we put this under a section saying [ $runtim
| |
| 55 hash_set_type_check_test: Fail # Issue 22635 | |
| 55 symbol_reserved_word_test/03: RuntimeError # bug 19972 | 56 symbol_reserved_word_test/03: RuntimeError # bug 19972 |
| 56 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein g whitespace. | 57 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein g whitespace. |
| 57 int_parse_radix_test/02: Fail # No bigints. | 58 int_parse_radix_test/02: Fail # No bigints. |
| 58 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w hitespace. | 59 double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being w hitespace. |
| 59 integer_to_radix_string_test: RuntimeError # issue 22045 | 60 integer_to_radix_string_test: RuntimeError # issue 22045 |
| 60 | 61 |
| 61 # With the exception of 'void', const Symbol() should not accept reserved | 62 # With the exception of 'void', const Symbol() should not accept reserved |
| 62 # words. | 63 # words. |
| 63 [ $compiler == none || $compiler == dart2js || $compiler == dart2dart] | 64 [ $compiler == none || $compiler == dart2js || $compiler == dart2dart] |
| 64 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 | 65 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 224 | 225 |
| 225 [ $runtime != d8 && $runtime != vm ] | 226 [ $runtime != d8 && $runtime != vm ] |
| 226 # The regexp tests are not verified to work on non d8/vm platforms yet. | 227 # The regexp tests are not verified to work on non d8/vm platforms yet. |
| 227 regexp/*: Skip | 228 regexp/*: Skip |
| 228 | 229 |
| 229 [ $runtime == vm ] | 230 [ $runtime == vm ] |
| 230 regexp/global_test: Skip # Timeout. Issue 21709 and 21708 | 231 regexp/global_test: Skip # Timeout. Issue 21709 and 21708 |
| 231 | 232 |
| 232 [ $mode == debug ] | 233 [ $mode == debug ] |
| 233 regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 | 234 regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 |
| OLD | NEW |