| 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 # Don't run any test-like files that show up in packages directories. It | 5 # Don't run any test-like files that show up in packages directories. It |
| 6 # shouldn't be necessary to run "pub install" in these packages, but if you do | 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 7 # it shouldn't break the tests. | 7 # it shouldn't break the tests. |
| 8 */packages/*/*: Skip | 8 */packages/*/*: Skip |
| 9 */*/packages/*/*: Skip | 9 */*/packages/*/*: Skip |
| 10 */*/*/packages/*/*: Skip | 10 */*/*/packages/*/*: Skip |
| 11 | 11 |
| 12 # Skip non-test files ending with "_test". | 12 # Skip non-test files ending with "_test". |
| 13 scheduled_test/lib/*: Skip | 13 scheduled_test/lib/*: Skip |
| 14 | 14 |
| 15 scheduled_test/test/scheduled_server_test: Pass, Fail, Slow, Crash # Issue 9231,
9582 | 15 scheduled_test/test/scheduled_server_test: Pass, Fail, Slow, Crash # Issue 9231,
9582 |
| 16 scheduled_test/test/scheduled_process_test: Pass, Slow # Issue 9231 | 16 scheduled_test/test/scheduled_process_test: Pass, Slow # Issue 9231 |
| 17 | 17 |
| 18 # WebDriver tests have 3rd party dependencies (we need to run | |
| 19 # selenium_standalone.jar), so we skip these in our automated | |
| 20 # testing. | |
| 21 webdriver/test/webdriver_test: Skip | |
| 22 | |
| 23 [ $compiler == none && $runtime == drt && $mode == debug] | 18 [ $compiler == none && $runtime == drt && $mode == debug] |
| 24 mdv/test/custom_element_bindings_test: Fail # Issue 11657 | 19 mdv/test/custom_element_bindings_test: Fail # Issue 11657 |
| 25 | 20 |
| 26 [ $compiler == dart2js && $runtime == ff ] | 21 [ $compiler == dart2js && $runtime == ff ] |
| 27 unittest/test/unittest_test: Pass, Timeout # http://dartbug.com/11473 | 22 unittest/test/unittest_test: Pass, Timeout # http://dartbug.com/11473 |
| 28 | 23 |
| 29 [ $runtime == d8 || $runtime == jsshell ] | 24 [ $runtime == d8 || $runtime == jsshell ] |
| 30 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 | 25 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 |
| 31 stack_trace/test/vm_test: Fail, OK # VM-specific traces | 26 stack_trace/test/vm_test: Fail, OK # VM-specific traces |
| 32 sequence_zip/test/stream_test: Fail, OK # Timers are not supported. | 27 sequence_zip/test/stream_test: Fail, OK # Timers are not supported. |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 [ $runtime == dartium || $runtime == drt ] | 168 [ $runtime == dartium || $runtime == drt ] |
| 174 serialization/test/no_library_test: Skip # Expected Failure | 169 serialization/test/no_library_test: Skip # Expected Failure |
| 175 | 170 |
| 176 # Skip mdv tests on command line VM, they only run in the browser. | 171 # Skip mdv tests on command line VM, they only run in the browser. |
| 177 [ $runtime == vm ] | 172 [ $runtime == vm ] |
| 178 mdv: Skip | 173 mdv: Skip |
| 179 | 174 |
| 180 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 175 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 181 docgen/test/single_library_test: Skip # Uses dart:io | 176 docgen/test/single_library_test: Skip # Uses dart:io |
| 182 | 177 |
| OLD | NEW |