| 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 [ $runtime == vm ] | 5 [ $runtime == vm ] |
| 6 isolate2_negative_test: Skip # Need to resolve correct behaviour. | 6 isolate2_negative_test: Skip # Need to resolve correct behaviour. |
| 7 serialization_test: Skip # tests frog-specific serialization code | 7 serialization_test: Skip # tests frog-specific serialization code |
| 8 v2_spawn_uri_test: Fail # test uses a ".js" suffix that is bogus on vm. | 8 v2_spawn_uri_test: Fail # test uses a ".js" suffix that is bogus on vm. |
| 9 v2_compute_this_script_browser_test: Skip # browser specific test | 9 v2_compute_this_script_browser_test: Skip # browser specific test |
| 10 | 10 |
| 11 [ ($compiler == none || $compiler == dart2js) && $runtime == drt ] | 11 [ $compiler == none && $runtime == drt ] |
| 12 serialization_test: Skip # tests frog-specific serialization code | 12 serialization_test: Skip # tests frog-specific serialization code |
| 13 v2*: Skip # new api for isolates not implemented in the VM yet. | 13 v2_spawn_uri_test: Skip # uses a .js extension (not for dartium) |
| 14 v2_spawn_uri_negative_test: Skip # ditto |
| 15 v2_spawn_uri_vm_test: Skip # not implemented in dartium yet. |
| 16 v2_spawn_uri_vm_negative_test: Skip |
| 14 | 17 |
| 15 [ $compiler == frog ] | 18 [ $compiler == frog ] |
| 16 v2_spawn_uri_vm_test: Skip # test uses a ".dart" suffix that only works in vm. | 19 v2_spawn_uri_vm_test: Skip # test uses a ".dart" suffix that only works in vm. |
| 17 v2_spawn_uri_vm_negative_test: Skip # ditto above. | 20 v2_spawn_uri_vm_negative_test: Skip # ditto above. |
| 18 | 21 |
| 19 [ $compiler == frog && $runtime == d8 ] | 22 [ $compiler == frog && $runtime == d8 ] |
| 20 v2_spawn_uri_test: Fail # not implemented for d8 | 23 v2_spawn_uri_test: Fail # not implemented for d8 |
| 21 v2_compute_this_script_browser_test: Skip # browser specific test | 24 v2_compute_this_script_browser_test: Skip # browser specific test |
| 22 | 25 |
| 23 [ $compiler == dartc ] | 26 [ $compiler == dartc ] |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. | 60 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. |
| 58 [ $runtime == opera ] | 61 [ $runtime == opera ] |
| 59 *: Skip | 62 *: Skip |
| 60 | 63 |
| 61 [ $arch == simarm ] | 64 [ $arch == simarm ] |
| 62 *: Skip | 65 *: Skip |
| 63 | 66 |
| 64 [ $arch == arm ] | 67 [ $arch == arm ] |
| 65 *: Skip | 68 *: Skip |
| 66 | 69 |
| 67 [ $compiler == dart2js ] | 70 [ $compiler == dart2js && $runtime == drt ] |
| 68 v2_spawn_function_custom_class_test: Skip # dart2js does not support APIv2 | 71 v2_spawn_uri_test: Skip # dart2js does not support spawnUri yet |
| 69 v2_spawn_uri_test: Fail, OK # dart2js does not support APIv2 | 72 v2_spawn_uri_negative_test: Skip # ditto |
| 70 v2_spawn_uri_vm_test: Skip # test uses a ".dart" suffix that only works in vm. | 73 v2_spawn_uri_vm_test: Skip # test uses a ".dart" suffix that only works in vm. |
| 71 v2_spawn_uri_vm_negative_test: Skip # ditto above. | 74 v2_spawn_uri_vm_negative_test: Skip # ditto above. |
| 72 constructor_test: Fail, OK # dart2js does not support subclassing Isolate | 75 constructor_test: Fail, OK # dart2js does not support subclassing Isolate |
| 73 | 76 |
| 77 [ $compiler == dart2js && $runtime == d8 ] |
| 78 constructor_test: Fail, OK # dart2js does not support subclassing Isolate |
| 79 v2_spawn_uri_test: Skip # loading another file is not supported in d8 |
| 80 v2_spawn_uri_negative_test: Skip # ditto |
| 81 v2_spawn_uri_vm_test: Skip # test uses a ".dart" suffix that only works in vm. |
| 82 v2_spawn_uri_vm_negative_test: Skip # ditto above. |
| 83 |
| 74 [ $compiler == dart2js && $runtime == none ] | 84 [ $compiler == dart2js && $runtime == none ] |
| 75 *: Fail, Pass # TODO(ahe): Triage these tests. | 85 *: Fail, Pass # TODO(ahe): Triage these tests. |
| OLD | NEW |