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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
462 // I'm not sure why they are so slow. One guess is that they are spewing | 462 // I'm not sure why they are so slow. One guess is that they are spewing |
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 | 467 |
468 // TODO(rnystrom): Strong mode cast failures. | 468 // TODO(rnystrom): Strong mode cast failures. |
469 'codec1_test': fail, | 469 'codec1_test': fail, |
470 'encoding_test': skip_timeout, | 470 'encoding_test': skip_timeout, |
471 | 471 |
472 // TODO(jmesserly): this is in an inconsistent state between our old and | |
473 // newer SDKs. | |
474 'html_escape_test': skip_fail, | |
sra1
2016/05/14 19:58:27
maybe just fail so we know when it is fixed.
Jennifer Messerly
2016/05/17 18:04:14
The problem here is it's failing inconsistently. U
| |
475 | |
472 // TODO(rnystrom): If this test is enabled, karma gets confused and | 476 // TODO(rnystrom): If this test is enabled, karma gets confused and |
473 // disconnects randomly. | 477 // disconnects randomly. |
474 'json_lib_test': skip_fail, | 478 'json_lib_test': skip_fail, |
475 | 479 |
476 'json_utf8_chunk_test': skip_timeout, | 480 'json_utf8_chunk_test': skip_timeout, |
477 | 481 |
478 // TODO(rnystrom): Strong mode cast failure. | 482 // TODO(rnystrom): Strong mode cast failure. |
479 'line_splitter_test': fail, | 483 'line_splitter_test': fail, |
480 | 484 |
481 '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... | |
812 | 816 |
813 for (let action of unittest_tests) { | 817 for (let action of unittest_tests) { |
814 try { | 818 try { |
815 action(); | 819 action(); |
816 } catch (e) { | 820 } catch (e) { |
817 console.error("Caught error tying to setup test:", e); | 821 console.error("Caught error tying to setup test:", e); |
818 } | 822 } |
819 } | 823 } |
820 }); | 824 }); |
821 })(); | 825 })(); |
OLD | NEW |