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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 'stacktrace_current_test': fail, | 453 'stacktrace_current_test': fail, |
454 'stacktrace_fromstring_test': fail, | 454 'stacktrace_fromstring_test': fail, |
455 'string_from_environment2_test': fail, | 455 'string_from_environment2_test': fail, |
456 'string_from_environment_test': fail, | 456 'string_from_environment_test': fail, |
457 'string_fromcharcodes_test': fail, | 457 'string_fromcharcodes_test': fail, |
458 'string_operations_with_null_test': fail, | 458 'string_operations_with_null_test': fail, |
459 'symbol_reserved_word_test_06_multi': fail, | 459 'symbol_reserved_word_test_06_multi': fail, |
460 'symbol_reserved_word_test_09_multi': fail, | 460 'symbol_reserved_word_test_09_multi': fail, |
461 'symbol_reserved_word_test_12_multi': fail, | 461 'symbol_reserved_word_test_12_multi': fail, |
462 'throw_half_surrogate_pair_test_01_multi': fail, | 462 'throw_half_surrogate_pair_test_01_multi': fail, |
| 463 'uri_test': fail, |
463 'uri_file_test': fail, | 464 'uri_file_test': fail, |
464 'uri_normalize_path_test': fail, | 465 'uri_normalize_path_test': fail, |
465 'uri_normalize_test': fail, | 466 'uri_normalize_test': fail, |
466 'uri_parameters_all_test': fail, | 467 'uri_parameters_all_test': fail, |
467 'uri_parse_test': fail, | 468 'uri_parse_test': fail, |
468 }, | 469 }, |
469 | 470 |
470 'lib/typed_data': { | 471 'lib/typed_data': { |
471 // No bigint or int64 support | 472 // No bigint or int64 support |
472 'int32x4_bigint_test': skip_fail, | 473 'int32x4_bigint_test': skip_fail, |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 | 545 |
545 if (!async_helper.asyncTestStarted) done(); | 546 if (!async_helper.asyncTestStarted) done(); |
546 }); | 547 }); |
547 } | 548 } |
548 } | 549 } |
549 | 550 |
550 for (let action of unittest_tests) { | 551 for (let action of unittest_tests) { |
551 action(); | 552 action(); |
552 } | 553 } |
553 })(); | 554 })(); |
OLD | NEW |