| 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 14 matching lines...) Expand all Loading... |
| 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 ] | 31 [ $compiler == dart2js && $runtime == drt ] |
| 32 unittest/test/unittest_test: Pass, Fail, Crash # Bug in v8, http://dartbug.com/9
407 | 32 unittest/test/unittest_test: Pass, Fail, Crash # Bug in v8, http://dartbug.com/9
407 |
| 33 | 33 |
| 34 | 34 |
| 35 [ $compiler == dart2js && $runtime == d8 ] | 35 [ $runtime == d8 || $runtime == jsshell ] |
| 36 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 | 36 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 |
| 37 | 37 |
| 38 [$compiler == dart2dart] | 38 [$compiler == dart2dart] |
| 39 *: Skip | 39 *: Skip |
| 40 | 40 |
| 41 # Don't compile tests that use dart:io to JS | 41 # Don't compile tests that use dart:io to JS |
| 42 [ $compiler == dart2js || $compiler == dart2dart ] | 42 [ $compiler == dart2js || $compiler == dart2dart ] |
| 43 http/test/*: Skip | 43 http/test/*: Skip |
| 44 oauth2/test/*: Skip | 44 oauth2/test/*: Skip |
| 45 pathos/test/*: Skip | 45 pathos/test/*: Skip |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 [ $arch == mips ] | 144 [ $arch == mips ] |
| 145 *: Skip | 145 *: Skip |
| 146 | 146 |
| 147 [ $arch == simmips ] | 147 [ $arch == simmips ] |
| 148 *: Skip | 148 *: Skip |
| 149 | 149 |
| 150 # Skip serialization test that explicitly has no library declaration in the | 150 # Skip serialization test that explicitly has no library declaration in the |
| 151 # test on Dartium, which requires all tests to have a library. | 151 # test on Dartium, which requires all tests to have a library. |
| 152 [ $runtime == dartium || $runtime == drt ] | 152 [ $runtime == dartium || $runtime == drt ] |
| 153 serialization/test/no_library_test: Skip # Expected Failure | 153 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |