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 prefix standalone | 5 prefix standalone |
6 | 6 |
7 [ $component == vm && $checked ] | 7 [ $component == vm && $checked ] |
8 # These tests have type errors on purpose. | 8 # These tests have type errors on purpose. |
9 ProcessInvalidArgumentsTest: Fail, OK | 9 ProcessInvalidArgumentsTest: Fail, OK |
10 DirectoryInvalidArgumentsTest: Fail, OK | 10 DirectoryInvalidArgumentsTest: Fail, OK |
11 FileInvalidArgumentsTest: Fail, OK | 11 FileInvalidArgumentsTest: Fail, OK |
12 | 12 |
13 [ $component == vm] | 13 [ $component == vm] |
14 ManyEchoServerTest: Skip # Bug 5103754 | 14 ManyEchoServerTest: Skip # Bug 5103754 |
15 # These tests fail, crash, and timeout to test the testing infrastructure. | 15 # These tests fail, crash, and timeout to test the testing infrastructure. |
16 FailTest: Fail | 16 FailTest: Fail |
17 TimeoutTest: Skip # Uses too much time to test on many platforms, for no gain. | 17 TimeoutTest: Skip # Uses too much time to test on many platforms, for no gain. |
18 TestExtensionTest: Fail # shared library in wrong place (issue 1817) | 18 TestExtensionTest: Fail # shared library in wrong place (issue 1817) |
19 | 19 |
| 20 # The following test is temporarily skipped because the vm was changed (it |
| 21 # requires to explicitly import dart:isolate), but the binaries in |
| 22 # tools/testing/bin/ have not been updated. Remove once we update them. |
| 23 TestRunnerTest: Skip |
| 24 |
20 [ $component == vm && $system == macos] | 25 [ $component == vm && $system == macos] |
21 # This test fails with "Too many open files" on the Mac OS buildbot. | 26 # This test fails with "Too many open files" on the Mac OS buildbot. |
22 SocketManyConnectionsTest: Skip | 27 SocketManyConnectionsTest: Skip |
23 TestExtensionTest: Skip # Extensions not implemented on MacOS | 28 TestExtensionTest: Skip # Extensions not implemented on MacOS |
24 | 29 |
25 [ $component == vm && $system == win32] | 30 [ $component == vm && $system == win32] |
26 TestExtensionTest: Skip # Extensions not implemented on Windows | 31 TestExtensionTest: Skip # Extensions not implemented on Windows |
27 | 32 |
28 [ $component == dartium ] | 33 [ $component == dartium ] |
29 # Server specific tests OK to fail in the browser | 34 # Server specific tests OK to fail in the browser |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 [ $arch == x64 ] | 82 [ $arch == x64 ] |
78 MediumIntegerTest: Fail # Issue 1146. | 83 MediumIntegerTest: Fail # Issue 1146. |
79 | 84 |
80 | 85 |
81 [ $arch == arm ] | 86 [ $arch == arm ] |
82 *: Skip | 87 *: Skip |
83 | 88 |
84 | 89 |
85 [ $arch == simarm ] | 90 [ $arch == simarm ] |
86 *: Skip | 91 *: Skip |
OLD | NEW |