OLD | NEW |
(Empty) | |
| 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 |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 [ $compiler == none && ($runtime == drt || $runtime == dartium) ] |
| 6 html_test: Pass, Fail # Issue 1946. |
| 7 request_animation_frame_test: Skip # drt hangs; requestAnimationFrame not impl
emented |
| 8 |
| 9 [ $compiler == frog && $runtime == drt ] |
| 10 html_test: Skip # Issue 2657 |
| 11 request_animation_frame_test: Skip # drt hangs |
| 12 |
| 13 [ $runtime == chrome || $runtime == ie || $runtime == safari || $runtime == ff |
| $runtime == opera ] |
| 14 html_test: Pass, Fail # "Measurement measurement is async but before" See issu
e 1946. |
| 15 |
| 16 [ $runtime == ie ] |
| 17 typed_arrays_1_test: Skip # ie9 does not have typed arrays. |
| 18 typed_arrays_2_test: Skip |
| 19 typed_arrays_3_test: Skip |
| 20 typed_arrays_4_test: Skip |
| 21 canvas_pixel_array_type_alias_test: Fail # Verify is CanvasPixelArray. |
| 22 html_test: Fail |
| 23 |
| 24 [ $runtime == safari ] |
| 25 html_test: Fail |
| 26 canvas_pixel_array_type_alias_test: Fail # Caught TypeError: 'undefined' is not
a function |
| 27 |
| 28 [ $runtime == ie && ($system == linux || $system == mac) ] |
| 29 *: Skip |
| 30 |
| 31 [ $runtime == safari && ($system == linux || $system == windows) ] |
| 32 *: Skip |
| 33 |
| 34 # 'html' tests import the HTML library, so they only make sense in |
| 35 # a browser environment. |
| 36 [ $compiler == dartc ] |
| 37 *: Skip |
| 38 |
| 39 [ $runtime == vm ] |
| 40 *: Skip |
| 41 |
| 42 [ $compiler == frog && $runtime == d8 ] |
| 43 *: Skip |
| 44 |
| 45 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. |
| 46 [ $runtime == opera ] |
| 47 *: Skip |
| 48 |
| 49 [ $compiler == frog && $runtime == none ] |
| 50 *: Skip |
| 51 |
| 52 [ $compiler == dart2js && ($runtime == drt || $runtime == chrome || $runtime ==
ff) ] |
| 53 request_animation_frame_test: Skip # Async test hangs. |
| 54 |
| 55 [ $compiler == dart2js && $runtime == drt ] |
| 56 # Unknown error - should investigate. |
| 57 html_test: Fail |
| 58 |
| 59 [ $compiler == dart2js && $runtime == none ] |
| 60 *: Fail, Pass # TODO(ahe): Triage these tests. |
OLD | NEW |