| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 (function() { | 5 (function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 let dart_sdk = dart_library.import('dart_sdk'); | 8 let dart_sdk = dart_library.import('dart_sdk'); |
| 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); | 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); |
| 10 let async_helper = dart_library.import('async_helper').async_helper; | 10 let async_helper = dart_library.import('async_helper').async_helper; |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 // a ton of warnings, that slow down the test. | 463 // a ton of warnings, that slow down the test. |
| 464 'chunked_conversion_utf84_test': skip_timeout, | 464 'chunked_conversion_utf84_test': skip_timeout, |
| 465 'chunked_conversion_utf88_test': skip_timeout, | 465 'chunked_conversion_utf88_test': skip_timeout, |
| 466 'chunked_conversion_utf8_test': skip_timeout, | 466 'chunked_conversion_utf8_test': skip_timeout, |
| 467 'encoding_test': skip_timeout, | 467 'encoding_test': skip_timeout, |
| 468 | 468 |
| 469 // TODO(jmesserly): this is in an inconsistent state between our old and | 469 // TODO(jmesserly): this is in an inconsistent state between our old and |
| 470 // newer SDKs. | 470 // newer SDKs. |
| 471 'html_escape_test': skip_fail, | 471 'html_escape_test': skip_fail, |
| 472 | 472 |
| 473 // TODO(jmesserly): seems to fail or pass based on SDK version? |
| 474 'html_escape_test': ['skip'], |
| 475 |
| 473 // TODO(rnystrom): If this test is enabled, karma gets confused and | 476 // TODO(rnystrom): If this test is enabled, karma gets confused and |
| 474 // disconnects randomly. | 477 // disconnects randomly. |
| 475 'json_lib_test': skip_fail, | 478 'json_lib_test': skip_fail, |
| 476 | 479 |
| 477 'json_utf8_chunk_test': skip_timeout, | 480 'json_utf8_chunk_test': skip_timeout, |
| 478 | 481 |
| 479 // TODO(rnystrom): Strong mode cast failure. | 482 // TODO(rnystrom): Strong mode cast failure. |
| 480 'line_splitter_test': fail, | 483 'line_splitter_test': fail, |
| 481 | 484 |
| 482 'streamed_conversion_json_encode1_test': skip_timeout, | 485 'streamed_conversion_json_encode1_test': skip_timeout, |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 | 816 |
| 814 for (let action of unittest_tests) { | 817 for (let action of unittest_tests) { |
| 815 try { | 818 try { |
| 816 action(); | 819 action(); |
| 817 } catch (e) { | 820 } catch (e) { |
| 818 console.error("Caught error tying to setup test:", e); | 821 console.error("Caught error tying to setup test:", e); |
| 819 } | 822 } |
| 820 } | 823 } |
| 821 }); | 824 }); |
| 822 })(); | 825 })(); |
| OLD | NEW |