| 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 TimeoutTest: Skip # Timeout test for testing the test runner. | 5 TimeoutTest: Skip # Timeout test for testing the test runner. |
| 6 FailTest: Fail, OK # Fails intentionally | 6 FailTest: Fail, OK # Fails intentionally |
| 7 OutOfMemoryTest: Skip # Issue 2345 | 7 OutOfMemoryTest: Skip # Issue 2345 |
| 8 | 8 |
| 9 package/InvalidUriTest: Fail, OK # Fails intentionally | 9 package/InvalidUriTest: Fail, OK # Fails intentionally |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 # This test fails with "Too many open files" on the Mac OS buildbot. | 23 # This test fails with "Too many open files" on the Mac OS buildbot. |
| 24 io/SocketManyConnectionsTest: Skip | 24 io/SocketManyConnectionsTest: Skip |
| 25 io/TestExtensionTest: Skip # Extensions not implemented on MacOS | 25 io/TestExtensionTest: Skip # Extensions not implemented on MacOS |
| 26 | 26 |
| 27 [ $runtime == vm && $system == windows] | 27 [ $runtime == vm && $system == windows] |
| 28 io/TestExtensionTest: Skip # Extensions not implemented on Windows | 28 io/TestExtensionTest: Skip # Extensions not implemented on Windows |
| 29 io/HttpShutdownTest: Skip # Currently times out on windows | 29 io/HttpShutdownTest: Skip # Currently times out on windows |
| 30 | 30 |
| 31 [ $compiler == none && $runtime == drt ] | 31 [ $compiler == none && $runtime == drt ] |
| 32 io/*: Skip # Don't run tests using dart:io in the browser | 32 io/*: Skip # Don't run tests using dart:io in the browser |
| 33 package/*: Skip # Do not run those in Dartium. |
| 33 | 34 |
| 34 [ $compiler == dartc] | 35 [ $compiler == dartc] |
| 35 *: Skip | 36 *: Skip |
| 36 | 37 |
| 37 [ $compiler == frog || $compiler == frogsh || ($compiler == dart2js && $runtime
== drt) ] | 38 [ $compiler == frog || $compiler == frogsh || ($compiler == dart2js && $runtime
== drt) ] |
| 38 *: Skip | 39 *: Skip |
| 39 | 40 |
| 40 [ $compiler == dart2js ] | 41 [ $compiler == dart2js ] |
| 41 package/PackageTest: Skip # TODO(rnystrom): Re-enable these once dart2js | 42 package/PackageTest: Skip # TODO(rnystrom): Re-enable these once dart2js |
| 42 package/InvalidUriTest: Skip # supports "package:". | 43 package/InvalidUriTest: Skip # supports "package:". |
| 43 | 44 |
| 44 [ $arch == x64 ] | 45 [ $arch == x64 ] |
| 45 MediumIntegerTest: Fail # Issue 1146. | 46 MediumIntegerTest: Fail # Issue 1146. |
| 46 | 47 |
| 47 | 48 |
| 48 [ $arch == arm ] | 49 [ $arch == arm ] |
| 49 *: Skip | 50 *: Skip |
| 50 | 51 |
| 51 | 52 |
| 52 [ $arch == simarm ] | 53 [ $arch == simarm ] |
| 53 *: Skip | 54 *: Skip |
| OLD | NEW |