| 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 | 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 | 13 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 14 # it shouldn't break the tests. | 14 # it shouldn't break the tests. |
| 15 */packages/*/*: Skip | 15 */packages/*/*: Skip |
| 16 */*/packages/*/*: Skip | 16 */*/packages/*/*: Skip |
| 17 */*/*/packages/*/*: Skip | 17 */*/*/packages/*/*: Skip |
| 18 | 18 |
| 19 # Skip non-test files ending with "_test". | 19 # Skip non-test files ending with "_test". |
| 20 scheduled_test/lib/*: Skip | 20 scheduled_test/lib/*: Skip |
| 21 | 21 |
| 22 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 |
| 23 scheduled_test/test/scheduled_process_test: Pass, Slow # Issue 9231 | 23 scheduled_test/test/scheduled_process_test: Pass, Slow # Issue 9231 |
| 24 | 24 |
| 25 # WebDriver tests have 3rd party dependencies (we need to run | 25 # WebDriver tests have 3rd party dependencies (we need to run |
| 26 # selenium_standalone.jar), so we skip these in our automated | 26 # selenium_standalone.jar), so we skip these in our automated |
| 27 # testing. | 27 # testing. |
| 28 webdriver/test/webdriver_test: Skip | 28 webdriver/test/webdriver_test: Skip |
| 29 | 29 |
| 30 [ $compiler == dart2js && $runtime == ff ] |
| 31 unittest/test/unittest_test: Pass, Timeout # http://dartbug.com/11473 |
| 32 |
| 30 [ $runtime == d8 || $runtime == jsshell ] | 33 [ $runtime == d8 || $runtime == jsshell ] |
| 31 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 | 34 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 |
| 32 | 35 |
| 33 [$compiler == dart2dart] | 36 [$compiler == dart2dart] |
| 34 *: Skip | 37 *: Skip |
| 35 | 38 |
| 36 [ $compiler == dart2js || $compiler == dart2dart ] | 39 [ $compiler == dart2js || $compiler == dart2dart ] |
| 37 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that | 40 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that |
| 38 # overflow in JS (numbers slightly larger than | 41 # overflow in JS (numbers slightly larger than |
| 39 # 32 bits where we do bitwise operations). | 42 # 32 bits where we do bitwise operations). |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 # test on Dartium, which requires all tests to have a library. | 190 # test on Dartium, which requires all tests to have a library. |
| 188 [ $runtime == dartium || $runtime == drt ] | 191 [ $runtime == dartium || $runtime == drt ] |
| 189 serialization/test/no_library_test: Skip # Expected Failure | 192 serialization/test/no_library_test: Skip # Expected Failure |
| 190 | 193 |
| 191 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 194 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 192 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 195 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 193 | 196 |
| 194 # Skip mdv_observe tests on command line VM, they only run in the browser. | 197 # Skip mdv_observe tests on command line VM, they only run in the browser. |
| 195 [ $runtime == vm ] | 198 [ $runtime == vm ] |
| 196 mdv_observe: Skip | 199 mdv_observe: Skip |
| OLD | NEW |