| 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 int_from_environment2_test: Skip | 9 int_from_environment2_test: Skip |
| 10 int_from_environment3_test: Skip | 10 int_from_environment3_test: Skip |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 symbol_reserved_word_test/02: CompileTimeError # bug 20191 | 39 symbol_reserved_word_test/02: CompileTimeError # bug 20191 |
| 40 symbol_reserved_word_test/05: CompileTimeError # bug 20191 | 40 symbol_reserved_word_test/05: CompileTimeError # bug 20191 |
| 41 | 41 |
| 42 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co
ntentShellOnAndroid) ] | 42 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co
ntentShellOnAndroid) ] |
| 43 symbol_reserved_word_test/02: RuntimeError # bug 20191 / dartium/drt cannot dete
ct CompileTimeErrors | 43 symbol_reserved_word_test/02: RuntimeError # bug 20191 / dartium/drt cannot dete
ct CompileTimeErrors |
| 44 symbol_reserved_word_test/05: RuntimeError # bug 20191 / dartium/drt cannot dete
ct CompileTimeErrors | 44 symbol_reserved_word_test/05: RuntimeError # bug 20191 / dartium/drt cannot dete
ct CompileTimeErrors |
| 45 | 45 |
| 46 # new Symbol('void') should be allowed. | 46 # new Symbol('void') should be allowed. |
| 47 [ $compiler == dart2js ] | 47 [ $compiler == dart2js ] |
| 48 symbol_reserved_word_test/03: RuntimeError # bug 19972 | 48 symbol_reserved_word_test/03: RuntimeError # bug 19972 |
| 49 int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 bein
g whitespace. |
| 50 int_parse_radix_test/02: Fail # No bigints. |
| 49 | 51 |
| 50 # With the exception of 'void', const Symbol() should not accept reserved | 52 # With the exception of 'void', const Symbol() should not accept reserved |
| 51 # words. | 53 # words. |
| 52 [ $compiler == none || $compiler == dart2js || $compiler == dart2dart] | 54 [ $compiler == none || $compiler == dart2js || $compiler == dart2dart] |
| 53 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 | 55 symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 |
| 54 symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972 | 56 symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972 |
| 55 symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972 | 57 symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972 |
| 56 | 58 |
| 57 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co
ntentShellOnAndroid) ] | 59 [ $compiler == none && ($runtime == drt || $runtime == dartium || $runtime == Co
ntentShellOnAndroid) ] |
| 58 symbol_reserved_word_test/04: Fail # bug 11669, 19972 / dartium/drt cannot detec
t CompileTimeErrors | 60 symbol_reserved_word_test/04: Fail # bug 11669, 19972 / dartium/drt cannot detec
t CompileTimeErrors |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 [ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim) ] | 171 [ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim) ] |
| 170 list_test/01: Fail # Safari bug: Array(-2) seen as dead code. | 172 list_test/01: Fail # Safari bug: Array(-2) seen as dead code. |
| 171 | 173 |
| 172 [ $runtime == ie10 ] | 174 [ $runtime == ie10 ] |
| 173 num_parse_test: RuntimeError # Issue 15316 | 175 num_parse_test: RuntimeError # Issue 15316 |
| 174 num_parse_test/01: RuntimeError # Issue 15316 | 176 num_parse_test/01: RuntimeError # Issue 15316 |
| 175 | 177 |
| 176 [ $system == windows && $arch == x64 ] | 178 [ $system == windows && $arch == x64 ] |
| 177 stopwatch_test: Skip # Flaky test due to expected performance behaviour. | 179 stopwatch_test: Skip # Flaky test due to expected performance behaviour. |
| 178 | 180 |
| OLD | NEW |