| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 // you increase the time by a large amount, but it's pretty gratuitous. | 467 // you increase the time by a large amount, but it's pretty gratuitous. |
| 468 // I'm not sure why they are so slow. One guess is that they are spewing | 468 // I'm not sure why they are so slow. One guess is that they are spewing |
| 469 // a ton of warnings, that slow down the test. | 469 // a ton of warnings, that slow down the test. |
| 470 'chunked_conversion_utf84_test': skip_timeout, | 470 'chunked_conversion_utf84_test': skip_timeout, |
| 471 'chunked_conversion_utf88_test': skip_timeout, | 471 'chunked_conversion_utf88_test': skip_timeout, |
| 472 'chunked_conversion_utf8_test': skip_timeout, | 472 'chunked_conversion_utf8_test': skip_timeout, |
| 473 | 473 |
| 474 // TODO(rnystrom): Strong mode cast failures. | 474 // TODO(rnystrom): Strong mode cast failures. |
| 475 'codec1_test': fail, | 475 'codec1_test': fail, |
| 476 'encoding_test': skip_timeout, | 476 'encoding_test': skip_timeout, |
| 477 'html_escape_test': fail, | |
| 478 | 477 |
| 479 // TODO(rnystrom): If this test is enabled, karma gets confused and | 478 // TODO(rnystrom): If this test is enabled, karma gets confused and |
| 480 // disconnects randomly. | 479 // disconnects randomly. |
| 481 'json_lib_test': skip_fail, | 480 'json_lib_test': skip_fail, |
| 482 | 481 |
| 483 'json_utf8_chunk_test': skip_timeout, | 482 'json_utf8_chunk_test': skip_timeout, |
| 484 | 483 |
| 485 // TODO(rnystrom): Strong mode cast failure. | 484 // TODO(rnystrom): Strong mode cast failure. |
| 486 'line_splitter_test': fail, | 485 'line_splitter_test': fail, |
| 487 | 486 |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 | 818 |
| 820 for (let action of unittest_tests) { | 819 for (let action of unittest_tests) { |
| 821 try { | 820 try { |
| 822 action(); | 821 action(); |
| 823 } catch (e) { | 822 } catch (e) { |
| 824 console.error("Caught error tying to setup test:", e); | 823 console.error("Caught error tying to setup test:", e); |
| 825 } | 824 } |
| 826 } | 825 } |
| 827 }); | 826 }); |
| 828 })(); | 827 })(); |
| OLD | NEW |