| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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 | 30 |
| 31 [ $compiler == dart2js && $runtime == drt ] | |
| 32 unittest/test/unittest_test: Pass, Fail, Crash # Bug in v8, http://dartbug.com/9
407 | |
| 33 | |
| 34 | |
| 35 [ $runtime == d8 || $runtime == jsshell ] | 31 [ $runtime == d8 || $runtime == jsshell ] |
| 36 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 | 32 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 |
| 37 | 33 |
| 38 [$compiler == dart2dart] | 34 [$compiler == dart2dart] |
| 39 *: Skip | 35 *: Skip |
| 40 | 36 |
| 41 # Don't compile tests that use dart:io to JS | 37 # Don't compile tests that use dart:io to JS |
| 42 [ $compiler == dart2js || $compiler == dart2dart ] | 38 [ $compiler == dart2js || $compiler == dart2dart ] |
| 43 http/test/*: Skip | 39 http/test/*: Skip |
| 44 oauth2/test/*: Skip | 40 oauth2/test/*: Skip |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 [ $compiler == dart2js && $runtime == drt ] | 118 [ $compiler == dart2js && $runtime == drt ] |
| 123 intl/test/date_time_format_uninitialized_test: Pass, Fail # http://dartbug.com/9
000 | 119 intl/test/date_time_format_uninitialized_test: Pass, Fail # http://dartbug.com/9
000 |
| 124 | 120 |
| 125 [ $compiler == dart2js && $minified ] | 121 [ $compiler == dart2js && $minified ] |
| 126 # The unittest package relies on getting the original (non-minified) method | 122 # The unittest package relies on getting the original (non-minified) method |
| 127 # names in Invocation. You can't get that when minifying. | 123 # names in Invocation. You can't get that when minifying. |
| 128 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. | 124 # TODO(ahe/erikcorry): But soon you can, now that we use Symbol. |
| 129 unittest/test/mock_test: Fail | 125 unittest/test/mock_test: Fail |
| 130 unittest/test/mock_regexp_negative_test: Fail | 126 unittest/test/mock_regexp_negative_test: Fail |
| 131 | 127 |
| 132 [ $compiler == dart2js && $csp && $runtime == drt ] | |
| 133 unittest/test/unittest_test: Pass, Fail, Crash # Bug in v8, http://dartbug.com/9
407 | |
| 134 | |
| 135 [ $compiler == none && $runtime == drt ] | 128 [ $compiler == none && $runtime == drt ] |
| 136 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. | 129 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. |
| 137 | 130 |
| 138 [ $arch == arm ] | 131 [ $arch == arm ] |
| 139 *: Skip | 132 *: Skip |
| 140 | 133 |
| 141 [ $arch == simarm ] | 134 [ $arch == simarm ] |
| 142 *: Skip | 135 *: Skip |
| 143 | 136 |
| 144 [ $arch == mips ] | 137 [ $arch == mips ] |
| 145 *: Skip | 138 *: Skip |
| 146 | 139 |
| 147 [ $arch == simmips ] | 140 [ $arch == simmips ] |
| 148 *: Skip | 141 *: Skip |
| 149 | 142 |
| 150 # Skip serialization test that explicitly has no library declaration in the | 143 # Skip serialization test that explicitly has no library declaration in the |
| 151 # test on Dartium, which requires all tests to have a library. | 144 # test on Dartium, which requires all tests to have a library. |
| 152 [ $runtime == dartium || $runtime == drt ] | 145 [ $runtime == dartium || $runtime == drt ] |
| 153 serialization/test/no_library_test: Skip # Expected Failure | 146 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |