| 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 == none ] | 5 [ $compiler == none ] |
| 6 UnicodeTest: Fail # Bug 5163868 | 6 unicode_test: Fail # Bug 5163868 |
| 7 *DartcTest: Skip | 7 *dartc_test: Skip |
| 8 | 8 |
| 9 [ $arch == ia32 ] | 9 [ $arch == ia32 ] |
| 10 | 10 |
| 11 | 11 |
| 12 [ $compiler == dartc ] | 12 [ $compiler == dartc ] |
| 13 *VMTest: Skip | 13 *vm_test: Skip |
| 14 | 14 |
| 15 [ $compiler == frog ] | 15 [ $compiler == frog ] |
| 16 # VM or DartC specific tests not to be run by Frog. See language.status. | 16 # VM or DartC specific tests not to be run by Frog. See language.status. |
| 17 *VMTest: Skip | 17 *vm_test: Skip |
| 18 *VMNegativeTest: Skip | 18 *vm_negative_test: Skip |
| 19 *DartcTest: Skip | 19 *dartc_test: Skip |
| 20 *DartcNegativeTest: Skip | 20 *dartc_negative_test: Skip |
| 21 # Note: Correctly skips 4 VMTests that rely on VM internals | 21 # Note: Correctly skips 4 VMTests that rely on VM internals |
| 22 | 22 |
| 23 ConstList*: Fail # 'const' is not currently checked. | 23 const_list_*: Fail # 'const' is not currently checked. |
| 24 CoreRuntimeTypesTest: Fail | 24 core_runtime_types_test: Fail |
| 25 ForInTest: Fail | 25 for_in_test: Fail |
| 26 ListTest: Fail | 26 list_test: Fail |
| 27 MapsTest: Fail | 27 maps_test: Fail |
| 28 MathParseDoubleTest: Fail | 28 math_parse_double_test: Fail |
| 29 RegExpAllMatchesTest: Fail | 29 reg_exp_all_matches_test: Fail |
| 30 RegExp4Test: Fail # New test added on 10/28. | 30 reg_exp4_test: Fail # New test added on 10/28. |
| 31 StopwatchTest: Pass,Fail # Issue 2398 | 31 stopwatch_test: Pass,Fail # Issue 2398 |
| 32 StringPatternTest: Fail | 32 string_pattern_test: Fail |
| 33 StringSubstringTest: Fail | 33 string_substring_test: Fail |
| 34 StringTest: Fail # Needs index out of range checks. | 34 string_test: Fail # Needs index out of range checks. |
| 35 | 35 |
| 36 [ $compiler == frog && $runtime == drt ] | 36 [ $compiler == frog && $runtime == drt ] |
| 37 ListSortTest: Fail, Pass # Issue 2667 | 37 list_sort_test: Fail, Pass # Issue 2667 |
| 38 | 38 |
| 39 [ $compiler == frog && $runtime == none ] | 39 [ $compiler == frog && $runtime == none ] |
| 40 *: Skip | 40 *: Skip |
| 41 | 41 |
| 42 [ $runtime == ff || $runtime == ie ] | 42 [ $runtime == ff || $runtime == ie ] |
| 43 UnicodeTest: Fail | 43 unicode_test: Fail |
| 44 | 44 |
| 45 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. | 45 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. |
| 46 [ $runtime == opera ] | 46 [ $runtime == opera ] |
| 47 *: Skip | 47 *: Skip |
| 48 | 48 |
| 49 [ $runtime == ie && ($system == linux || $system == mac) ] | 49 [ $runtime == ie && ($system == linux || $system == mac) ] |
| 50 *: Skip | 50 *: Skip |
| 51 | 51 |
| 52 [ $runtime == safari && ($system == linux || $system == windows) ] | 52 [ $runtime == safari && ($system == linux || $system == windows) ] |
| 53 *: Skip | 53 *: Skip |
| 54 | 54 |
| 55 [ $arch == simarm ] | 55 [ $arch == simarm ] |
| 56 *: Skip | 56 *: Skip |
| 57 | 57 |
| 58 [ $arch == arm ] | 58 [ $arch == arm ] |
| 59 *: Skip | 59 *: Skip |
| 60 | 60 |
| 61 [ $compiler == dart2js && $checked ] |
| 62 *: Skip |
| 63 |
| 64 [ $compiler == dart2js ] |
| 65 math_parse_double_test: Fail # Expect.equals(expected: <78187493520>, actual: <0
>) |
| 66 |
| 67 # Bad test, assumes RegExp.allMatches returns a Collection. |
| 68 reg_exp_all_matches_test: Fail, OK # NoSuchMethodException : method not found: '
forEach' |
| 69 |
| 70 reg_exp4_test: Fail, OK # Expects exception from const constructor. |
| 71 |
| 72 big_integer_vm_test: Fail, OK # VM specific test. |
| 73 growable_object_array2_vm_test: Fail, OK # VM specific test. |
| 74 growable_object_array_vm_test: Fail, OK # VM specific test. |
| 75 string_base_vm_test: Fail, OK # VM specific test. |
| 76 |
| 77 [ $compiler == dart2js && $runtime == none ] |
| 78 *: Fail, Pass # TODO(ahe): Triage these tests. |
| 79 |
| 80 [ $compiler == dart2js && $runtime == drt ] |
| 81 list_sort_test: Fail, Pass # Issue 2667 |
| OLD | NEW |