| 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 # Run this test manually to verify that the fixnum library produces | 5 # Run this test manually to verify that the fixnum library produces |
| 6 # the same results as native ints on a set of directed and random inputs. | 6 # the same results as native ints on a set of directed and random inputs. |
| 7 # Skip it when running automated tests because it times out. This | 7 # Skip it when running automated tests because it times out. This |
| 8 # test only makes sense on runtimes that support 64-bit integer | 8 # test only makes sense on runtimes that support 64-bit integer |
| 9 # arithmetic natively, i.e., the VM. | 9 # arithmetic natively, i.e., the VM. |
| 10 fixnum/test/int_64_vm_test: Skip | 10 fixnum/test/int_64_vm_test: Skip |
| 11 | 11 |
| 12 # Don't run any test-like files that show up in packages directories. It |
| 13 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 14 # it shouldn't break the tests. |
| 15 */packages/*/*: Skip |
| 16 */*/packages/*/*: Skip |
| 17 */*/*/packages/*/*: Skip |
| 18 |
| 12 # Skip non-test files ending with "_test". | 19 # Skip non-test files ending with "_test". |
| 13 scheduled_test/lib/*: Skip | 20 scheduled_test/lib/*: Skip |
| 14 | 21 |
| 15 scheduled_test/test/scheduled_server_test: Pass, Fail, Slow, Crash # Issue 9231,
9582 | 22 scheduled_test/test/scheduled_server_test: Pass, Fail, Slow, Crash # Issue 9231,
9582 |
| 16 scheduled_test/test/scheduled_process_test: Pass, Slow # Issue 9231 | 23 scheduled_test/test/scheduled_process_test: Pass, Slow # Issue 9231 |
| 17 | 24 |
| 18 # WebDriver tests have 3rd party dependencies (we need to run | 25 # WebDriver tests have 3rd party dependencies (we need to run |
| 19 # selenium_standalone.jar), so we skip these in our automated | 26 # selenium_standalone.jar), so we skip these in our automated |
| 20 # testing. | 27 # testing. |
| 21 webdriver/test/webdriver_test: Skip | 28 webdriver/test/webdriver_test: Skip |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 [ $arch == mips ] | 139 [ $arch == mips ] |
| 133 *: Skip | 140 *: Skip |
| 134 | 141 |
| 135 [ $arch == simmips ] | 142 [ $arch == simmips ] |
| 136 *: Skip | 143 *: Skip |
| 137 | 144 |
| 138 # Skip serialization test that explicitly has no library declaration in the | 145 # Skip serialization test that explicitly has no library declaration in the |
| 139 # test on Dartium, which requires all tests to have a library. | 146 # test on Dartium, which requires all tests to have a library. |
| 140 [ $runtime == dartium || $runtime == drt ] | 147 [ $runtime == dartium || $runtime == drt ] |
| 141 serialization/test/no_library_test: Skip # Expected Failure | 148 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |