Chromium Code Reviews| 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 [ $runtime == d8 || $runtime == jsshell ] | 35 [ $runtime == d8 || $runtime == jsshell ] |
|
Siggi Cherem (dart-lang)
2013/04/23 00:55:09
before you had removed the dart2js here, maybe mer
gram
2013/04/23 19:42:47
I meant to remove the first one, as d8 will imply
| |
| 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 == dart2js && $runtime == d8 ] | |
| 39 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 | |
| 40 | |
| 38 [$compiler == dart2dart] | 41 [$compiler == dart2dart] |
| 39 *: Skip | 42 *: Skip |
| 40 | 43 |
| 41 # Don't compile tests that use dart:io to JS | 44 # Don't compile tests that use dart:io to JS |
| 42 [ $compiler == dart2js || $compiler == dart2dart ] | 45 [ $compiler == dart2js || $compiler == dart2dart ] |
| 43 http/test/*: Skip | 46 http/test/*: Skip |
| 44 oauth2/test/*: Skip | 47 oauth2/test/*: Skip |
| 45 pathos/test/*: Skip | 48 pathos/test/*: Skip |
| 46 | 49 |
| 47 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would | 50 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 [ $arch == mips ] | 147 [ $arch == mips ] |
| 145 *: Skip | 148 *: Skip |
| 146 | 149 |
| 147 [ $arch == simmips ] | 150 [ $arch == simmips ] |
| 148 *: Skip | 151 *: Skip |
| 149 | 152 |
| 150 # Skip serialization test that explicitly has no library declaration in the | 153 # Skip serialization test that explicitly has no library declaration in the |
| 151 # test on Dartium, which requires all tests to have a library. | 154 # test on Dartium, which requires all tests to have a library. |
| 152 [ $runtime == dartium || $runtime == drt ] | 155 [ $runtime == dartium || $runtime == drt ] |
| 153 serialization/test/no_library_test: Skip # Expected Failure | 156 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |