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; |
11 let unittest = dart_library.import('unittest'); | 11 let unittest = dart_library.import('unittest'); |
12 let html_config = unittest.html_config; | 12 let html_config = unittest.html_config; |
13 // Test attributes are a list of strings, or a string for a single | 13 // Test attributes are a list of strings, or a string for a single |
14 // attribute. Valid attribues are: | 14 // attribute. Valid attributes are: |
15 // | 15 // |
| 16 // 'notyetstrong' - test is not yet strong mode safe |
16 // 'skip' - don't run the test | 17 // 'skip' - don't run the test |
17 // 'fail' - test fails | 18 // 'fail' - test fails |
18 // 'timeout' - test times out | 19 // 'timeout' - test times out |
19 // 'slow' - use 5s timeout instead of default 2s. | 20 // 'slow' - use 5s timeout instead of default 2s. |
20 // 'helper' - not a test, used by other tests. | 21 // 'helper' - not a test, used by other tests. |
21 // 'unittest' - run separately as a unittest test. | 22 // 'unittest' - run separately as a unittest test. |
22 // | 23 // |
23 // Common combinations: | 24 // Common combinations: |
| 25 const notyetstrong = 'notyetstrong'; |
24 const fail = 'fail'; | 26 const fail = 'fail'; |
25 const skip_fail = ['skip', 'fail']; | 27 const skip_fail = ['skip', 'fail']; |
26 const skip_timeout = ['skip', 'timeout']; | 28 const skip_timeout = ['skip', 'timeout']; |
27 | 29 |
28 // The number of expected unittest errors should be zero but unfortunately | 30 // The number of expected unittest errors should be zero but unfortunately |
29 // there are a lot of broken html unittests. | 31 // there are a lot of broken html unittests. |
30 let num_expected_unittest_fails = 3; | 32 let num_expected_unittest_fails = 3; |
31 let num_expected_unittest_errors = 2; | 33 let num_expected_unittest_errors = 2; |
32 | 34 |
33 // TODO(jmesserly): separate StrongModeError from other errors. | 35 // TODO(jmesserly): separate StrongModeError from other errors. |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 | 323 |
322 // https://github.com/dart-lang/sdk/issues/26123 | 324 // https://github.com/dart-lang/sdk/issues/26123 |
323 'bad_raw_string_negative_test': skip_fail, | 325 'bad_raw_string_negative_test': skip_fail, |
324 | 326 |
325 // https://github.com/dart-lang/sdk/issues/26124 | 327 // https://github.com/dart-lang/sdk/issues/26124 |
326 'prefix10_negative_test': skip_fail, | 328 'prefix10_negative_test': skip_fail, |
327 | 329 |
328 'library_prefixes_test1': 'helper', | 330 'library_prefixes_test1': 'helper', |
329 'library_prefixes_test2': 'helper', | 331 'library_prefixes_test2': 'helper', |
330 'top_level_prefixed_library_test': 'helper', | 332 'top_level_prefixed_library_test': 'helper', |
| 333 |
| 334 'abstract_exact_selector_test_01_multi': notyetstrong, |
| 335 'abstract_factory_constructor_test_00_multi': notyetstrong, |
| 336 'abstract_getter_test_01_multi': notyetstrong, |
| 337 'abstract_runtime_error_test_01_multi': notyetstrong, |
| 338 'abstract_runtime_error_test_02_multi': notyetstrong, |
| 339 'abstract_runtime_error_test_03_multi': notyetstrong, |
| 340 'abstract_syntax_test_00_multi': notyetstrong, |
| 341 'abstract_syntax_test_01_multi': notyetstrong, |
| 342 'application_test': notyetstrong, |
| 343 'argument_definition_test_01_multi': notyetstrong, |
| 344 'arithmetic_test': notyetstrong, |
| 345 'assign_static_type_test_01_multi': notyetstrong, |
| 346 'assign_static_type_test_02_multi': notyetstrong, |
| 347 'assign_static_type_test_03_multi': notyetstrong, |
| 348 'assign_static_type_test_04_multi': notyetstrong, |
| 349 'assign_static_type_test_05_multi': notyetstrong, |
| 350 'assign_static_type_test_06_multi': notyetstrong, |
| 351 'assign_to_type_test_01_multi': notyetstrong, |
| 352 'assign_to_type_test_02_multi': notyetstrong, |
| 353 'assign_to_type_test_03_multi': notyetstrong, |
| 354 'assign_to_type_test_04_multi': notyetstrong, |
| 355 'assign_top_method_test_01_multi': notyetstrong, |
| 356 'assignable_expression_test_01_multi': notyetstrong, |
| 357 'assignable_expression_test_02_multi': notyetstrong, |
| 358 'assignable_expression_test_03_multi': notyetstrong, |
| 359 'assignable_expression_test_11_multi': notyetstrong, |
| 360 'assignable_expression_test_12_multi': notyetstrong, |
| 361 'assignable_expression_test_13_multi': notyetstrong, |
| 362 'assignable_expression_test_21_multi': notyetstrong, |
| 363 'assignable_expression_test_22_multi': notyetstrong, |
| 364 'assignable_expression_test_23_multi': notyetstrong, |
| 365 'assignable_expression_test_31_multi': notyetstrong, |
| 366 'assignable_expression_test_32_multi': notyetstrong, |
| 367 'assignable_expression_test_33_multi': notyetstrong, |
| 368 'assignable_expression_test_41_multi': notyetstrong, |
| 369 'assignable_expression_test_42_multi': notyetstrong, |
| 370 'assignable_expression_test_43_multi': notyetstrong, |
| 371 'assignable_expression_test_50_multi': notyetstrong, |
| 372 'assignable_expression_test_none_multi': notyetstrong, |
| 373 'async_await_syntax_test_a01b_multi': notyetstrong, |
| 374 'async_await_syntax_test_a01c_multi': notyetstrong, |
| 375 'async_await_syntax_test_a01d_multi': notyetstrong, |
| 376 'async_await_syntax_test_a04b_multi': notyetstrong, |
| 377 'async_await_syntax_test_a05d_multi': notyetstrong, |
| 378 'async_await_syntax_test_a05f_multi': notyetstrong, |
| 379 'async_await_syntax_test_a05g_multi': notyetstrong, |
| 380 'async_await_syntax_test_a05h_multi': notyetstrong, |
| 381 'async_await_syntax_test_a06b_multi': notyetstrong, |
| 382 'async_await_syntax_test_a07b_multi': notyetstrong, |
| 383 'async_await_syntax_test_a08b_multi': notyetstrong, |
| 384 'async_await_syntax_test_a10a_multi': notyetstrong, |
| 385 'async_await_syntax_test_a11a_multi': notyetstrong, |
| 386 'async_await_syntax_test_a12b_multi': notyetstrong, |
| 387 'async_await_syntax_test_a12d_multi': notyetstrong, |
| 388 'async_await_syntax_test_a12e_multi': notyetstrong, |
| 389 'async_await_syntax_test_a12f_multi': notyetstrong, |
| 390 'async_await_syntax_test_a13b_multi': notyetstrong, |
| 391 'async_await_syntax_test_a13d_multi': notyetstrong, |
| 392 'async_await_syntax_test_a14b_multi': notyetstrong, |
| 393 'async_await_syntax_test_a14d_multi': notyetstrong, |
| 394 'async_await_syntax_test_a15b_multi': notyetstrong, |
| 395 'async_await_syntax_test_a15d_multi': notyetstrong, |
| 396 'async_await_syntax_test_b00a_multi': notyetstrong, |
| 397 'async_await_syntax_test_b00b_multi': notyetstrong, |
| 398 'async_await_syntax_test_b00c_multi': notyetstrong, |
| 399 'async_await_syntax_test_b00d_multi': notyetstrong, |
| 400 'async_await_syntax_test_b01b_multi': notyetstrong, |
| 401 'async_await_syntax_test_b01c_multi': notyetstrong, |
| 402 'async_await_syntax_test_b04b_multi': notyetstrong, |
| 403 'async_await_syntax_test_b06b_multi': notyetstrong, |
| 404 'async_await_syntax_test_b10a_multi': notyetstrong, |
| 405 'async_await_syntax_test_b10b_multi': notyetstrong, |
| 406 'async_await_syntax_test_b11a_multi': notyetstrong, |
| 407 'async_await_syntax_test_b12b_multi': notyetstrong, |
| 408 'async_await_syntax_test_b12d_multi': notyetstrong, |
| 409 'async_await_syntax_test_b12e_multi': notyetstrong, |
| 410 'async_await_syntax_test_b12f_multi': notyetstrong, |
| 411 'async_await_syntax_test_b13b_multi': notyetstrong, |
| 412 'async_await_syntax_test_b13d_multi': notyetstrong, |
| 413 'async_await_syntax_test_b14b_multi': notyetstrong, |
| 414 'async_await_syntax_test_b14d_multi': notyetstrong, |
| 415 'async_await_syntax_test_b15b_multi': notyetstrong, |
| 416 'async_await_syntax_test_b15d_multi': notyetstrong, |
| 417 'async_await_syntax_test_c01b_multi': notyetstrong, |
| 418 'async_await_syntax_test_c01c_multi': notyetstrong, |
| 419 'async_await_syntax_test_c04b_multi': notyetstrong, |
| 420 'async_await_syntax_test_c10a_multi': notyetstrong, |
| 421 'async_await_syntax_test_c11a_multi': notyetstrong, |
| 422 'async_await_syntax_test_c11b_multi': notyetstrong, |
| 423 'async_await_syntax_test_d01b_multi': notyetstrong, |
| 424 'async_await_syntax_test_d01c_multi': notyetstrong, |
| 425 'async_await_syntax_test_d04b_multi': notyetstrong, |
| 426 'async_await_syntax_test_d08b_multi': notyetstrong, |
| 427 'async_await_syntax_test_d10a_multi': notyetstrong, |
| 428 'async_await_syntax_test_e1_multi': notyetstrong, |
| 429 'async_await_syntax_test_e2_multi': notyetstrong, |
| 430 'async_await_syntax_test_e3_multi': notyetstrong, |
| 431 'async_await_syntax_test_e4_multi': notyetstrong, |
| 432 'async_await_syntax_test_e5_multi': notyetstrong, |
| 433 'async_await_syntax_test_e6_multi': notyetstrong, |
| 434 'async_await_syntax_test_e7_multi': notyetstrong, |
| 435 'async_await_syntax_test_e8_multi': notyetstrong, |
| 436 'async_await_syntax_test_e9_multi': notyetstrong, |
| 437 'async_await_test_02_multi': notyetstrong, |
| 438 'async_await_test_03_multi': notyetstrong, |
| 439 'async_or_generator_return_type_stacktrace_test_01_multi': notyetstrong, |
| 440 'async_or_generator_return_type_stacktrace_test_02_multi': notyetstrong, |
| 441 'async_or_generator_return_type_stacktrace_test_03_multi': notyetstrong, |
| 442 'async_return_types_test_tooManyTypeParameters_multi': notyetstrong, |
| 443 'async_return_types_test_wrongReturnType_multi': notyetstrong, |
| 444 'async_return_types_test_wrongTypeParameter_multi': notyetstrong, |
| 445 'await_backwards_compatibility_test_await1_multi': notyetstrong, |
| 446 'await_backwards_compatibility_test_await2_multi': notyetstrong, |
| 447 'await_backwards_compatibility_test_await3_multi': notyetstrong, |
| 448 'await_backwards_compatibility_test_await4_multi': notyetstrong, |
| 449 'await_test': notyetstrong, |
| 450 'bad_constructor_test_00_multi': notyetstrong, |
| 451 'bad_constructor_test_01_multi': notyetstrong, |
| 452 'bad_constructor_test_04_multi': notyetstrong, |
| 453 'bad_constructor_test_05_multi': notyetstrong, |
| 454 'bad_constructor_test_06_multi': notyetstrong, |
| 455 'bad_constructor_test_none_multi': notyetstrong, |
| 456 'bad_named_parameters2_test_01_multi': notyetstrong, |
| 457 'bad_named_parameters_test_01_multi': notyetstrong, |
| 458 'bad_named_parameters_test_02_multi': notyetstrong, |
| 459 'bad_named_parameters_test_03_multi': notyetstrong, |
| 460 'bad_named_parameters_test_04_multi': notyetstrong, |
| 461 'bad_named_parameters_test_05_multi': notyetstrong, |
| 462 'bad_override_test_01_multi': notyetstrong, |
| 463 'bad_override_test_02_multi': notyetstrong, |
| 464 'bad_override_test_03_multi': notyetstrong, |
| 465 'bad_override_test_04_multi': notyetstrong, |
| 466 'bad_override_test_05_multi': notyetstrong, |
| 467 'bad_override_test_06_multi': notyetstrong, |
| 468 'black_listed_test_01_multi': notyetstrong, |
| 469 'black_listed_test_02_multi': notyetstrong, |
| 470 'black_listed_test_03_multi': notyetstrong, |
| 471 'black_listed_test_04_multi': notyetstrong, |
| 472 'black_listed_test_05_multi': notyetstrong, |
| 473 'black_listed_test_06_multi': notyetstrong, |
| 474 'black_listed_test_07_multi': notyetstrong, |
| 475 'black_listed_test_08_multi': notyetstrong, |
| 476 'black_listed_test_09_multi': notyetstrong, |
| 477 'black_listed_test_10_multi': notyetstrong, |
| 478 'black_listed_test_12_multi': notyetstrong, |
| 479 'black_listed_test_13_multi': notyetstrong, |
| 480 'black_listed_test_14_multi': notyetstrong, |
| 481 'black_listed_test_none_multi': notyetstrong, |
| 482 'bool_check_test': notyetstrong, |
| 483 'bound_closure_primitives_test': notyetstrong, |
| 484 'built_in_identifier_illegal_test_01_multi': notyetstrong, |
| 485 'built_in_identifier_illegal_test_04_multi': notyetstrong, |
| 486 'built_in_identifier_illegal_test_05_multi': notyetstrong, |
| 487 'built_in_identifier_illegal_test_06_multi': notyetstrong, |
| 488 'built_in_identifier_illegal_test_07_multi': notyetstrong, |
| 489 'built_in_identifier_illegal_test_08_multi': notyetstrong, |
| 490 'built_in_identifier_illegal_test_10_multi': notyetstrong, |
| 491 'built_in_identifier_illegal_test_12_multi': notyetstrong, |
| 492 'built_in_identifier_illegal_test_13_multi': notyetstrong, |
| 493 'built_in_identifier_illegal_test_15_multi': notyetstrong, |
| 494 'built_in_identifier_illegal_test_16_multi': notyetstrong, |
| 495 'built_in_identifier_illegal_test_17_multi': notyetstrong, |
| 496 'built_in_identifier_illegal_test_18_multi': notyetstrong, |
| 497 'built_in_identifier_illegal_test_19_multi': notyetstrong, |
| 498 'built_in_identifier_illegal_test_20_multi': notyetstrong, |
| 499 'built_in_identifier_prefix_test': notyetstrong, |
| 500 'call_constructor_on_unresolvable_class_test_01_multi': notyetstrong, |
| 501 'call_constructor_on_unresolvable_class_test_02_multi': notyetstrong, |
| 502 'call_constructor_on_unresolvable_class_test_03_multi': notyetstrong, |
| 503 'call_constructor_on_unresolvable_class_test_04_multi': notyetstrong, |
| 504 'call_constructor_on_unresolvable_class_test_05_multi': notyetstrong, |
| 505 'call_constructor_on_unresolvable_class_test_06_multi': notyetstrong, |
| 506 'call_constructor_on_unresolvable_class_test_07_multi': notyetstrong, |
| 507 'call_non_method_field_test_01_multi': notyetstrong, |
| 508 'call_non_method_field_test_02_multi': notyetstrong, |
| 509 'call_nonexistent_constructor_test_01_multi': notyetstrong, |
| 510 'call_nonexistent_constructor_test_02_multi': notyetstrong, |
| 511 'call_nonexistent_static_test_01_multi': notyetstrong, |
| 512 'call_nonexistent_static_test_02_multi': notyetstrong, |
| 513 'call_nonexistent_static_test_03_multi': notyetstrong, |
| 514 'call_nonexistent_static_test_04_multi': notyetstrong, |
| 515 'call_nonexistent_static_test_05_multi': notyetstrong, |
| 516 'call_nonexistent_static_test_06_multi': notyetstrong, |
| 517 'call_nonexistent_static_test_07_multi': notyetstrong, |
| 518 'call_nonexistent_static_test_08_multi': notyetstrong, |
| 519 'call_nonexistent_static_test_09_multi': notyetstrong, |
| 520 'call_nonexistent_static_test_10_multi': notyetstrong, |
| 521 'call_through_getter_test': notyetstrong, |
| 522 'call_type_literal_test_01_multi': notyetstrong, |
| 523 'callable_test_00_multi': notyetstrong, |
| 524 'callable_test_01_multi': notyetstrong, |
| 525 'canonical_const3_test': notyetstrong, |
| 526 'cascade_test_01_multi': notyetstrong, |
| 527 'cascade_test_02_multi': notyetstrong, |
| 528 'cascade_test_03_multi': notyetstrong, |
| 529 'cast_test_04_multi': notyetstrong, |
| 530 'cast_test_05_multi': notyetstrong, |
| 531 'check_member_static_test_01_multi': notyetstrong, |
| 532 'check_member_static_test_02_multi': notyetstrong, |
| 533 'check_method_override_test_01_multi': notyetstrong, |
| 534 'check_method_override_test_02_multi': notyetstrong, |
| 535 'checked_null_test_01_multi': notyetstrong, |
| 536 'checked_setter2_test': notyetstrong, |
| 537 'checked_setter3_test_01_multi': notyetstrong, |
| 538 'checked_setter3_test_02_multi': notyetstrong, |
| 539 'checked_setter3_test_none_multi': notyetstrong, |
| 540 'checked_setter_test': notyetstrong, |
| 541 'class_cycle2_test_01_multi': notyetstrong, |
| 542 'class_cycle2_test_02_multi': notyetstrong, |
| 543 'class_cycle_test_00_multi': notyetstrong, |
| 544 'class_cycle_test_01_multi': notyetstrong, |
| 545 'class_cycle_test_02_multi': notyetstrong, |
| 546 'class_cycle_test_03_multi': notyetstrong, |
| 547 'class_keyword_test_01_multi': notyetstrong, |
| 548 'class_keyword_test_02_multi': notyetstrong, |
| 549 'class_literal_test_01_multi': notyetstrong, |
| 550 'class_literal_test_02_multi': notyetstrong, |
| 551 'class_literal_test_03_multi': notyetstrong, |
| 552 'class_literal_test_04_multi': notyetstrong, |
| 553 'class_literal_test_05_multi': notyetstrong, |
| 554 'class_literal_test_06_multi': notyetstrong, |
| 555 'class_literal_test_07_multi': notyetstrong, |
| 556 'class_literal_test_08_multi': notyetstrong, |
| 557 'class_literal_test_09_multi': notyetstrong, |
| 558 'class_literal_test_10_multi': notyetstrong, |
| 559 'class_literal_test_11_multi': notyetstrong, |
| 560 'class_literal_test_12_multi': notyetstrong, |
| 561 'class_literal_test_13_multi': notyetstrong, |
| 562 'class_literal_test_14_multi': notyetstrong, |
| 563 'class_literal_test_15_multi': notyetstrong, |
| 564 'class_literal_test_16_multi': notyetstrong, |
| 565 'class_literal_test_17_multi': notyetstrong, |
| 566 'class_literal_test_18_multi': notyetstrong, |
| 567 'class_literal_test_19_multi': notyetstrong, |
| 568 'class_literal_test_20_multi': notyetstrong, |
| 569 'class_literal_test_21_multi': notyetstrong, |
| 570 'class_literal_test_22_multi': notyetstrong, |
| 571 'class_literal_test_23_multi': notyetstrong, |
| 572 'class_literal_test_24_multi': notyetstrong, |
| 573 'class_literal_test_25_multi': notyetstrong, |
| 574 'class_override_test_00_multi': notyetstrong, |
| 575 'class_syntax_test_01_multi': notyetstrong, |
| 576 'closure_in_initializer_test': notyetstrong, |
| 577 'closure_internals_test': notyetstrong, |
| 578 'closure_type_test_01_multi': notyetstrong, |
| 579 'closure_type_test_none_multi': notyetstrong, |
| 580 'compile_time_constant10_test_01_multi': notyetstrong, |
| 581 'compile_time_constant10_test_02_multi': notyetstrong, |
| 582 'compile_time_constant13_test_02_multi': notyetstrong, |
| 583 'compile_time_constant13_test_03_multi': notyetstrong, |
| 584 'compile_time_constant13_test_04_multi': notyetstrong, |
| 585 'compile_time_constant13_test_05_multi': notyetstrong, |
| 586 'compile_time_constant_arguments_test_01_multi': notyetstrong, |
| 587 'compile_time_constant_arguments_test_02_multi': notyetstrong, |
| 588 'compile_time_constant_arguments_test_03_multi': notyetstrong, |
| 589 'compile_time_constant_arguments_test_04_multi': notyetstrong, |
| 590 'compile_time_constant_arguments_test_05_multi': notyetstrong, |
| 591 'compile_time_constant_arguments_test_06_multi': notyetstrong, |
| 592 'compile_time_constant_c_test_02_multi': notyetstrong, |
| 593 'compile_time_constant_c_test_03_multi': notyetstrong, |
| 594 'compile_time_constant_checked2_test_01_multi': notyetstrong, |
| 595 'compile_time_constant_checked2_test_02_multi': notyetstrong, |
| 596 'compile_time_constant_checked2_test_03_multi': notyetstrong, |
| 597 'compile_time_constant_checked2_test_04_multi': notyetstrong, |
| 598 'compile_time_constant_checked2_test_05_multi': notyetstrong, |
| 599 'compile_time_constant_checked2_test_06_multi': notyetstrong, |
| 600 'compile_time_constant_checked3_test_01_multi': notyetstrong, |
| 601 'compile_time_constant_checked3_test_02_multi': notyetstrong, |
| 602 'compile_time_constant_checked3_test_03_multi': notyetstrong, |
| 603 'compile_time_constant_checked3_test_04_multi': notyetstrong, |
| 604 'compile_time_constant_checked3_test_05_multi': notyetstrong, |
| 605 'compile_time_constant_checked3_test_06_multi': notyetstrong, |
| 606 'compile_time_constant_checked4_test_01_multi': notyetstrong, |
| 607 'compile_time_constant_checked4_test_02_multi': notyetstrong, |
| 608 'compile_time_constant_checked4_test_03_multi': notyetstrong, |
| 609 'compile_time_constant_checked5_test_03_multi': notyetstrong, |
| 610 'compile_time_constant_checked5_test_04_multi': notyetstrong, |
| 611 'compile_time_constant_checked5_test_05_multi': notyetstrong, |
| 612 'compile_time_constant_checked5_test_06_multi': notyetstrong, |
| 613 'compile_time_constant_checked5_test_07_multi': notyetstrong, |
| 614 'compile_time_constant_checked5_test_08_multi': notyetstrong, |
| 615 'compile_time_constant_checked5_test_09_multi': notyetstrong, |
| 616 'compile_time_constant_checked5_test_10_multi': notyetstrong, |
| 617 'compile_time_constant_checked5_test_11_multi': notyetstrong, |
| 618 'compile_time_constant_checked5_test_12_multi': notyetstrong, |
| 619 'compile_time_constant_checked5_test_13_multi': notyetstrong, |
| 620 'compile_time_constant_checked5_test_14_multi': notyetstrong, |
| 621 'compile_time_constant_checked5_test_15_multi': notyetstrong, |
| 622 'compile_time_constant_checked5_test_16_multi': notyetstrong, |
| 623 'compile_time_constant_checked5_test_17_multi': notyetstrong, |
| 624 'compile_time_constant_checked5_test_18_multi': notyetstrong, |
| 625 'compile_time_constant_checked5_test_19_multi': notyetstrong, |
| 626 'compile_time_constant_checked5_test_20_multi': notyetstrong, |
| 627 'compile_time_constant_checked5_test_21_multi': notyetstrong, |
| 628 'compile_time_constant_checked5_test_22_multi': notyetstrong, |
| 629 'compile_time_constant_checked5_test_23_multi': notyetstrong, |
| 630 'compile_time_constant_checked5_test_24_multi': notyetstrong, |
| 631 'compile_time_constant_checked5_test_25_multi': notyetstrong, |
| 632 'compile_time_constant_checked_test_01_multi': notyetstrong, |
| 633 'compile_time_constant_checked_test_02_multi': notyetstrong, |
| 634 'compile_time_constant_checked_test_03_multi': notyetstrong, |
| 635 'compile_time_constant_e_test': notyetstrong, |
| 636 'compile_time_constant_h_test': notyetstrong, |
| 637 'compile_time_constant_k_test_01_multi': notyetstrong, |
| 638 'compile_time_constant_k_test_02_multi': notyetstrong, |
| 639 'compile_time_constant_k_test_03_multi': notyetstrong, |
| 640 'compile_time_constant_o_test_01_multi': notyetstrong, |
| 641 'compile_time_constant_o_test_02_multi': notyetstrong, |
| 642 'compile_time_constant_p_test_01_multi': notyetstrong, |
| 643 'compile_time_constant_r_test_01_multi': notyetstrong, |
| 644 'compile_time_constant_r_test_02_multi': notyetstrong, |
| 645 'compile_time_constant_r_test_03_multi': notyetstrong, |
| 646 'compile_time_constant_test_01_multi': notyetstrong, |
| 647 'compile_time_constant_test_02_multi': notyetstrong, |
| 648 'conditional_method_invocation_test_05_multi': notyetstrong, |
| 649 'conditional_method_invocation_test_06_multi': notyetstrong, |
| 650 'conditional_method_invocation_test_07_multi': notyetstrong, |
| 651 'conditional_method_invocation_test_08_multi': notyetstrong, |
| 652 'conditional_method_invocation_test_11_multi': notyetstrong, |
| 653 'conditional_method_invocation_test_12_multi': notyetstrong, |
| 654 'conditional_method_invocation_test_13_multi': notyetstrong, |
| 655 'conditional_method_invocation_test_18_multi': notyetstrong, |
| 656 'conditional_method_invocation_test_19_multi': notyetstrong, |
| 657 'conditional_property_access_test_04_multi': notyetstrong, |
| 658 'conditional_property_access_test_05_multi': notyetstrong, |
| 659 'conditional_property_access_test_06_multi': notyetstrong, |
| 660 'conditional_property_access_test_09_multi': notyetstrong, |
| 661 'conditional_property_access_test_10_multi': notyetstrong, |
| 662 'conditional_property_access_test_11_multi': notyetstrong, |
| 663 'conditional_property_access_test_16_multi': notyetstrong, |
| 664 'conditional_property_access_test_17_multi': notyetstrong, |
| 665 'conditional_property_assignment_test_04_multi': notyetstrong, |
| 666 'conditional_property_assignment_test_05_multi': notyetstrong, |
| 667 'conditional_property_assignment_test_06_multi': notyetstrong, |
| 668 'conditional_property_assignment_test_10_multi': notyetstrong, |
| 669 'conditional_property_assignment_test_11_multi': notyetstrong, |
| 670 'conditional_property_assignment_test_12_multi': notyetstrong, |
| 671 'conditional_property_assignment_test_13_multi': notyetstrong, |
| 672 'conditional_property_assignment_test_20_multi': notyetstrong, |
| 673 'conditional_property_assignment_test_21_multi': notyetstrong, |
| 674 'conditional_property_assignment_test_22_multi': notyetstrong, |
| 675 'conditional_property_assignment_test_27_multi': notyetstrong, |
| 676 'conditional_property_assignment_test_28_multi': notyetstrong, |
| 677 'conditional_property_assignment_test_32_multi': notyetstrong, |
| 678 'conditional_property_assignment_test_33_multi': notyetstrong, |
| 679 'conditional_property_assignment_test_34_multi': notyetstrong, |
| 680 'conditional_property_assignment_test_35_multi': notyetstrong, |
| 681 'conditional_property_increment_decrement_test_04_multi': notyetstrong, |
| 682 'conditional_property_increment_decrement_test_08_multi': notyetstrong, |
| 683 'conditional_property_increment_decrement_test_12_multi': notyetstrong, |
| 684 'conditional_property_increment_decrement_test_16_multi': notyetstrong, |
| 685 'conditional_property_increment_decrement_test_21_multi': notyetstrong, |
| 686 'conditional_property_increment_decrement_test_22_multi': notyetstrong, |
| 687 'conditional_property_increment_decrement_test_27_multi': notyetstrong, |
| 688 'conditional_property_increment_decrement_test_28_multi': notyetstrong, |
| 689 'conditional_property_increment_decrement_test_33_multi': notyetstrong, |
| 690 'conditional_property_increment_decrement_test_34_multi': notyetstrong, |
| 691 'conditional_property_increment_decrement_test_39_multi': notyetstrong, |
| 692 'conditional_property_increment_decrement_test_40_multi': notyetstrong, |
| 693 'const_conditional_test_01_multi': notyetstrong, |
| 694 'const_conditional_test_02_multi': notyetstrong, |
| 695 'const_conditional_test_03_multi': notyetstrong, |
| 696 'const_conditional_test_04_multi': notyetstrong, |
| 697 'const_conditional_test_05_multi': notyetstrong, |
| 698 'const_conditional_test_06_multi': notyetstrong, |
| 699 'const_conditional_test_07_multi': notyetstrong, |
| 700 'const_conditional_test_08_multi': notyetstrong, |
| 701 'const_conditional_test_09_multi': notyetstrong, |
| 702 'const_conditional_test_10_multi': notyetstrong, |
| 703 'const_constructor2_test_01_multi': notyetstrong, |
| 704 'const_constructor2_test_02_multi': notyetstrong, |
| 705 'const_constructor2_test_03_multi': notyetstrong, |
| 706 'const_constructor2_test_04_multi': notyetstrong, |
| 707 'const_constructor2_test_05_multi': notyetstrong, |
| 708 'const_constructor2_test_06_multi': notyetstrong, |
| 709 'const_constructor2_test_07_multi': notyetstrong, |
| 710 'const_constructor2_test_08_multi': notyetstrong, |
| 711 'const_constructor2_test_09_multi': notyetstrong, |
| 712 'const_constructor2_test_10_multi': notyetstrong, |
| 713 'const_constructor2_test_11_multi': notyetstrong, |
| 714 'const_constructor2_test_12_multi': notyetstrong, |
| 715 'const_constructor2_test_13_multi': notyetstrong, |
| 716 'const_constructor2_test_14_multi': notyetstrong, |
| 717 'const_constructor2_test_15_multi': notyetstrong, |
| 718 'const_constructor2_test_16_multi': notyetstrong, |
| 719 'const_constructor2_test_17_multi': notyetstrong, |
| 720 'const_constructor2_test_18_multi': notyetstrong, |
| 721 'const_constructor2_test_19_multi': notyetstrong, |
| 722 'const_constructor2_test_20_multi': notyetstrong, |
| 723 'const_constructor2_test_21_multi': notyetstrong, |
| 724 'const_constructor2_test_22_multi': notyetstrong, |
| 725 'const_constructor2_test_23_multi': notyetstrong, |
| 726 'const_constructor2_test_24_multi': notyetstrong, |
| 727 'const_constructor2_test_none_multi': notyetstrong, |
| 728 'const_constructor3_test_02_multi': notyetstrong, |
| 729 'const_constructor3_test_04_multi': notyetstrong, |
| 730 'const_constructor_mixin2_test_01_multi': notyetstrong, |
| 731 'const_constructor_mixin3_test_01_multi': notyetstrong, |
| 732 'const_constructor_mixin_test_01_multi': notyetstrong, |
| 733 'const_constructor_nonconst_field_test_01_multi': notyetstrong, |
| 734 'const_constructor_super_test_01_multi': notyetstrong, |
| 735 'const_constructor_super_test_02_multi': notyetstrong, |
| 736 'const_constructor_syntax_test_01_multi': notyetstrong, |
| 737 'const_constructor_syntax_test_02_multi': notyetstrong, |
| 738 'const_constructor_syntax_test_03_multi': notyetstrong, |
| 739 'const_constructor_syntax_test_04_multi': notyetstrong, |
| 740 'const_constructor_syntax_test_05_multi': notyetstrong, |
| 741 'const_constructor_test_01_multi': notyetstrong, |
| 742 'const_dynamic_type_literal_test_02_multi': notyetstrong, |
| 743 'const_error_multiply_initialized_test_01_multi': notyetstrong, |
| 744 'const_error_multiply_initialized_test_02_multi': notyetstrong, |
| 745 'const_error_multiply_initialized_test_03_multi': notyetstrong, |
| 746 'const_error_multiply_initialized_test_04_multi': notyetstrong, |
| 747 'const_factory_with_body_test_01_multi': notyetstrong, |
| 748 'const_init2_test_02_multi': notyetstrong, |
| 749 'const_instance_field_test_01_multi': notyetstrong, |
| 750 'const_list_test': notyetstrong, |
| 751 'const_map2_test_00_multi': notyetstrong, |
| 752 'const_map2_test_none_multi': notyetstrong, |
| 753 'const_map3_test_00_multi': notyetstrong, |
| 754 'const_map3_test_none_multi': notyetstrong, |
| 755 'const_native_factory_test_01_multi': notyetstrong, |
| 756 'const_objects_are_immutable_test_01_multi': notyetstrong, |
| 757 'const_objects_are_immutable_test_none_multi': notyetstrong, |
| 758 'const_redirecting_factory_test': notyetstrong, |
| 759 'const_switch2_test_01_multi': notyetstrong, |
| 760 'const_syntax_test_01_multi': notyetstrong, |
| 761 'const_syntax_test_02_multi': notyetstrong, |
| 762 'const_syntax_test_03_multi': notyetstrong, |
| 763 'const_syntax_test_04_multi': notyetstrong, |
| 764 'const_syntax_test_05_multi': notyetstrong, |
| 765 'const_syntax_test_06_multi': notyetstrong, |
| 766 'const_syntax_test_07_multi': notyetstrong, |
| 767 'const_syntax_test_08_multi': notyetstrong, |
| 768 'const_syntax_test_09_multi': notyetstrong, |
| 769 'const_syntax_test_10_multi': notyetstrong, |
| 770 'const_syntax_test_11_multi': notyetstrong, |
| 771 'const_syntax_test_12_multi': notyetstrong, |
| 772 'const_types_test_01_multi': notyetstrong, |
| 773 'const_types_test_02_multi': notyetstrong, |
| 774 'const_types_test_03_multi': notyetstrong, |
| 775 'const_types_test_04_multi': notyetstrong, |
| 776 'const_types_test_05_multi': notyetstrong, |
| 777 'const_types_test_06_multi': notyetstrong, |
| 778 'const_types_test_07_multi': notyetstrong, |
| 779 'const_types_test_08_multi': notyetstrong, |
| 780 'const_types_test_09_multi': notyetstrong, |
| 781 'const_types_test_10_multi': notyetstrong, |
| 782 'const_types_test_11_multi': notyetstrong, |
| 783 'const_types_test_12_multi': notyetstrong, |
| 784 'const_types_test_13_multi': notyetstrong, |
| 785 'const_types_test_14_multi': notyetstrong, |
| 786 'const_types_test_15_multi': notyetstrong, |
| 787 'const_types_test_16_multi': notyetstrong, |
| 788 'const_types_test_17_multi': notyetstrong, |
| 789 'const_types_test_18_multi': notyetstrong, |
| 790 'const_types_test_19_multi': notyetstrong, |
| 791 'const_types_test_20_multi': notyetstrong, |
| 792 'const_types_test_21_multi': notyetstrong, |
| 793 'const_types_test_22_multi': notyetstrong, |
| 794 'const_types_test_23_multi': notyetstrong, |
| 795 'const_types_test_24_multi': notyetstrong, |
| 796 'const_types_test_25_multi': notyetstrong, |
| 797 'const_types_test_26_multi': notyetstrong, |
| 798 'const_types_test_27_multi': notyetstrong, |
| 799 'const_types_test_28_multi': notyetstrong, |
| 800 'const_types_test_29_multi': notyetstrong, |
| 801 'const_types_test_30_multi': notyetstrong, |
| 802 'const_types_test_31_multi': notyetstrong, |
| 803 'const_types_test_32_multi': notyetstrong, |
| 804 'const_types_test_33_multi': notyetstrong, |
| 805 'const_types_test_34_multi': notyetstrong, |
| 806 'const_types_test_35_multi': notyetstrong, |
| 807 'const_types_test_36_multi': notyetstrong, |
| 808 'const_types_test_37_multi': notyetstrong, |
| 809 'const_types_test_38_multi': notyetstrong, |
| 810 'const_types_test_39_multi': notyetstrong, |
| 811 'const_types_test_40_multi': notyetstrong, |
| 812 'const_types_test_41_multi': notyetstrong, |
| 813 'constant_fold_equals_test': notyetstrong, |
| 814 'constant_locals_test_01_multi': notyetstrong, |
| 815 'constant_locals_test_02_multi': notyetstrong, |
| 816 'constant_locals_test_03_multi': notyetstrong, |
| 817 'constant_locals_test_04_multi': notyetstrong, |
| 818 'constant_locals_test_05_multi': notyetstrong, |
| 819 'constant_type_literal_test_01_multi': notyetstrong, |
| 820 'constructor10_test_00_multi': notyetstrong, |
| 821 'constructor10_test_01_multi': notyetstrong, |
| 822 'constructor10_test_02_multi': notyetstrong, |
| 823 'constructor2_test': notyetstrong, |
| 824 'constructor3_test': notyetstrong, |
| 825 'constructor5_test': notyetstrong, |
| 826 'constructor6_test': notyetstrong, |
| 827 'constructor_call_as_function_test_01_multi': notyetstrong, |
| 828 'constructor_duplicate_final_test_01_multi': notyetstrong, |
| 829 'constructor_duplicate_final_test_02_multi': notyetstrong, |
| 830 'constructor_duplicate_final_test_03_multi': notyetstrong, |
| 831 'constructor_duplicate_initializers_test_01_multi': notyetstrong, |
| 832 'constructor_duplicate_initializers_test_02_multi': notyetstrong, |
| 833 'constructor_duplicate_initializers_test_03_multi': notyetstrong, |
| 834 'constructor_initializer_test_01_multi': notyetstrong, |
| 835 'constructor_initializer_test_none_multi': notyetstrong, |
| 836 'constructor_name_test_01_multi': notyetstrong, |
| 837 'constructor_name_test_02_multi': notyetstrong, |
| 838 'constructor_name_test_03_multi': notyetstrong, |
| 839 'constructor_named_arguments_test_01_multi': notyetstrong, |
| 840 'constructor_redirect2_test_01_multi': notyetstrong, |
| 841 'constructor_redirect2_test_02_multi': notyetstrong, |
| 842 'constructor_redirect2_test_03_multi': notyetstrong, |
| 843 'constructor_redirect2_test_04_multi': notyetstrong, |
| 844 'constructor_redirect_test_01_multi': notyetstrong, |
| 845 'constructor_return_test_01_multi': notyetstrong, |
| 846 'constructor_return_test_02_multi': notyetstrong, |
| 847 'constructor_return_test_03_multi': notyetstrong, |
| 848 'constructor_return_test_04_multi': notyetstrong, |
| 849 'constructor_return_test_05_multi': notyetstrong, |
| 850 'constructor_test': notyetstrong, |
| 851 'constructor_with_mixin_test': notyetstrong, |
| 852 'crash_6725_test_01_multi': notyetstrong, |
| 853 'create_unresolved_type_test_01_multi': notyetstrong, |
| 854 'cyclic_class_member_test_01_multi': notyetstrong, |
| 855 'cyclic_constructor_test_01_multi': notyetstrong, |
| 856 'cyclic_default_values_test': notyetstrong, |
| 857 'cyclic_type_variable_test_01_multi': notyetstrong, |
| 858 'cyclic_type_variable_test_02_multi': notyetstrong, |
| 859 'cyclic_type_variable_test_03_multi': notyetstrong, |
| 860 'cyclic_type_variable_test_04_multi': notyetstrong, |
| 861 'cyclic_typedef_test_01_multi': notyetstrong, |
| 862 'cyclic_typedef_test_02_multi': notyetstrong, |
| 863 'cyclic_typedef_test_03_multi': notyetstrong, |
| 864 'cyclic_typedef_test_04_multi': notyetstrong, |
| 865 'cyclic_typedef_test_05_multi': notyetstrong, |
| 866 'cyclic_typedef_test_06_multi': notyetstrong, |
| 867 'cyclic_typedef_test_07_multi': notyetstrong, |
| 868 'cyclic_typedef_test_08_multi': notyetstrong, |
| 869 'cyclic_typedef_test_09_multi': notyetstrong, |
| 870 'cyclic_typedef_test_10_multi': notyetstrong, |
| 871 'cyclic_typedef_test_11_multi': notyetstrong, |
| 872 'cyclic_typedef_test_13_multi': notyetstrong, |
| 873 'default_factory2_test_01_multi': notyetstrong, |
| 874 'default_factory2_test_none_multi': notyetstrong, |
| 875 'default_factory_library_test': notyetstrong, |
| 876 'default_factory_test_01_multi': notyetstrong, |
| 877 'deferred_constraints_constants_test_constructor1_multi': notyetstrong, |
| 878 'deferred_constraints_constants_test_constructor2_multi': notyetstrong, |
| 879 'deferred_constraints_constants_test_default_argument1_multi': notyetstron
g, |
| 880 'deferred_constraints_constants_test_default_argument2_multi': notyetstron
g, |
| 881 'deferred_constraints_constants_test_metadata1_multi': notyetstrong, |
| 882 'deferred_constraints_constants_test_metadata2_multi': notyetstrong, |
| 883 'deferred_constraints_constants_test_metadata3_multi': notyetstrong, |
| 884 'deferred_constraints_constants_test_reference1_multi': notyetstrong, |
| 885 'deferred_constraints_constants_test_reference2_multi': notyetstrong, |
| 886 'deferred_constraints_type_annotation_test_as_operation_multi': notyetstro
ng, |
| 887 'deferred_constraints_type_annotation_test_catch_check_multi': notyetstron
g, |
| 888 'deferred_constraints_type_annotation_test_is_check_multi': notyetstrong, |
| 889 'deferred_constraints_type_annotation_test_new_before_load_multi': notyets
trong, |
| 890 'deferred_constraints_type_annotation_test_new_generic2_multi': notyetstro
ng, |
| 891 'deferred_constraints_type_annotation_test_new_generic3_multi': notyetstro
ng, |
| 892 'deferred_constraints_type_annotation_test_type_annotation1_multi': notyet
strong, |
| 893 'deferred_constraints_type_annotation_test_type_annotation_generic1_multi'
: notyetstrong, |
| 894 'deferred_constraints_type_annotation_test_type_annotation_generic2_multi'
: notyetstrong, |
| 895 'deferred_constraints_type_annotation_test_type_annotation_generic3_multi'
: notyetstrong, |
| 896 'deferred_constraints_type_annotation_test_type_annotation_generic4_multi'
: notyetstrong, |
| 897 'deferred_constraints_type_annotation_test_type_annotation_null_multi': no
tyetstrong, |
| 898 'deferred_constraints_type_annotation_test_type_annotation_top_level_multi
': notyetstrong, |
| 899 'deferred_duplicate_prefix1_test_01_multi': notyetstrong, |
| 900 'deferred_duplicate_prefix2_test_01_multi': notyetstrong, |
| 901 'deferred_duplicate_prefix3_test_01_multi': notyetstrong, |
| 902 'deferred_global_test': notyetstrong, |
| 903 'deferred_inheritance_constraints_test_extends_multi': notyetstrong, |
| 904 'deferred_inheritance_constraints_test_implements_multi': notyetstrong, |
| 905 'deferred_inheritance_constraints_test_mixin_multi': notyetstrong, |
| 906 'deferred_inheritance_constraints_test_redirecting_constructor_multi': not
yetstrong, |
| 907 'deferred_load_constants_test_01_multi': notyetstrong, |
| 908 'deferred_load_constants_test_02_multi': notyetstrong, |
| 909 'deferred_load_constants_test_03_multi': notyetstrong, |
| 910 'deferred_load_constants_test_04_multi': notyetstrong, |
| 911 'deferred_load_constants_test_05_multi': notyetstrong, |
| 912 'deferred_no_prefix_test_01_multi': notyetstrong, |
| 913 'deopt_inlined_function_test': notyetstrong, |
| 914 'double_to_string_as_exponential2_test': notyetstrong, |
| 915 'double_to_string_as_fixed2_test': notyetstrong, |
| 916 'double_to_string_as_precision2_test': notyetstrong, |
| 917 'duplicate_constructor_test_01_multi': notyetstrong, |
| 918 'duplicate_implements_test_01_multi': notyetstrong, |
| 919 'duplicate_implements_test_02_multi': notyetstrong, |
| 920 'duplicate_implements_test_03_multi': notyetstrong, |
| 921 'duplicate_implements_test_04_multi': notyetstrong, |
| 922 'dynamic2_test_00_multi': notyetstrong, |
| 923 'dynamic2_test_01_multi': notyetstrong, |
| 924 'dynamic_field_test_01_multi': notyetstrong, |
| 925 'dynamic_field_test_02_multi': notyetstrong, |
| 926 'dynamic_prefix_core_test_01_multi': notyetstrong, |
| 927 'emit_const_fields_test': notyetstrong, |
| 928 'empty_block_case_test': notyetstrong, |
| 929 'enum_is_keyword_test_01_multi': notyetstrong, |
| 930 'enum_private_test_02_multi': notyetstrong, |
| 931 'enum_syntax_test_01_multi': notyetstrong, |
| 932 'enum_syntax_test_02_multi': notyetstrong, |
| 933 'enum_syntax_test_03_multi': notyetstrong, |
| 934 'enum_syntax_test_04_multi': notyetstrong, |
| 935 'enum_syntax_test_07_multi': notyetstrong, |
| 936 'enum_syntax_test_08_multi': notyetstrong, |
| 937 'enum_syntax_test_09_multi': notyetstrong, |
| 938 'enum_syntax_test_10_multi': notyetstrong, |
| 939 'enum_syntax_test_11_multi': notyetstrong, |
| 940 'enum_syntax_test_20_multi': notyetstrong, |
| 941 'enum_syntax_test_21_multi': notyetstrong, |
| 942 'enum_syntax_test_22_multi': notyetstrong, |
| 943 'enum_syntax_test_30_multi': notyetstrong, |
| 944 'error_stacktrace_test': notyetstrong, |
| 945 'example_constructor_test': notyetstrong, |
| 946 'export_double_same_main_test': notyetstrong, |
| 947 'export_main_override_test': notyetstrong, |
| 948 'export_main_test': notyetstrong, |
| 949 'external_test_01_multi': notyetstrong, |
| 950 'external_test_02_multi': notyetstrong, |
| 951 'external_test_11_multi': notyetstrong, |
| 952 'external_test_12_multi': notyetstrong, |
| 953 'external_test_14_multi': notyetstrong, |
| 954 'external_test_16_multi': notyetstrong, |
| 955 'external_test_22_multi': notyetstrong, |
| 956 'external_test_23_multi': notyetstrong, |
| 957 'external_test_25_multi': notyetstrong, |
| 958 'external_test_30_multi': notyetstrong, |
| 959 'external_test_31_multi': notyetstrong, |
| 960 'f_bounded_quantification2_test': notyetstrong, |
| 961 'f_bounded_quantification4_test': notyetstrong, |
| 962 'f_bounded_quantification5_test': notyetstrong, |
| 963 'f_bounded_quantification_test_01_multi': notyetstrong, |
| 964 'f_bounded_quantification_test_02_multi': notyetstrong, |
| 965 'f_bounded_quantification_test_none_multi': notyetstrong, |
| 966 'factory1_test_00_multi': notyetstrong, |
| 967 'factory1_test_01_multi': notyetstrong, |
| 968 'factory1_test_none_multi': notyetstrong, |
| 969 'factory2_test': notyetstrong, |
| 970 'factory3_test': notyetstrong, |
| 971 'factory4_test': notyetstrong, |
| 972 'factory5_test_00_multi': notyetstrong, |
| 973 'factory5_test_none_multi': notyetstrong, |
| 974 'factory_implementation_test_00_multi': notyetstrong, |
| 975 'factory_implementation_test_none_multi': notyetstrong, |
| 976 'factory_redirection2_test_01_multi': notyetstrong, |
| 977 'factory_redirection3_cyclic_test_01_multi': notyetstrong, |
| 978 'factory_redirection_test_01_multi': notyetstrong, |
| 979 'factory_redirection_test_02_multi': notyetstrong, |
| 980 'factory_redirection_test_03_multi': notyetstrong, |
| 981 'factory_redirection_test_04_multi': notyetstrong, |
| 982 'factory_redirection_test_05_multi': notyetstrong, |
| 983 'factory_redirection_test_06_multi': notyetstrong, |
| 984 'factory_redirection_test_07_multi': notyetstrong, |
| 985 'factory_redirection_test_08_multi': notyetstrong, |
| 986 'factory_redirection_test_09_multi': notyetstrong, |
| 987 'factory_redirection_test_10_multi': notyetstrong, |
| 988 'factory_redirection_test_11_multi': notyetstrong, |
| 989 'factory_redirection_test_12_multi': notyetstrong, |
| 990 'factory_redirection_test_13_multi': notyetstrong, |
| 991 'factory_redirection_test_14_multi': notyetstrong, |
| 992 'factory_redirection_test_none_multi': notyetstrong, |
| 993 'factory_return_type_checked_test': notyetstrong, |
| 994 'fauxverride_test_03_multi': notyetstrong, |
| 995 'fauxverride_test_05_multi': notyetstrong, |
| 996 'field_decl_missing_var_type_test_01_multi': notyetstrong, |
| 997 'field_initialization_order_test': notyetstrong, |
| 998 'field_override2_test': notyetstrong, |
| 999 'field_override3_test_00_multi': notyetstrong, |
| 1000 'field_override3_test_01_multi': notyetstrong, |
| 1001 'field_override3_test_02_multi': notyetstrong, |
| 1002 'field_override3_test_03_multi': notyetstrong, |
| 1003 'field_override4_test_00_multi': notyetstrong, |
| 1004 'field_override4_test_02_multi': notyetstrong, |
| 1005 'field_override_test_01_multi': notyetstrong, |
| 1006 'field_override_test_02_multi': notyetstrong, |
| 1007 'field_override_test_none_multi': notyetstrong, |
| 1008 'field_test': notyetstrong, |
| 1009 'field_type_check_test_01_multi': notyetstrong, |
| 1010 'final_field_initialization_order_test': notyetstrong, |
| 1011 'final_for_in_variable_test_01_multi': notyetstrong, |
| 1012 'final_is_not_const_test_01_multi': notyetstrong, |
| 1013 'final_param_test_01_multi': notyetstrong, |
| 1014 'final_super_field_set_test_01_multi': notyetstrong, |
| 1015 'final_syntax_test_09_multi': notyetstrong, |
| 1016 'final_syntax_test_10_multi': notyetstrong, |
| 1017 'final_variable_assignment_test_01_multi': notyetstrong, |
| 1018 'final_variable_assignment_test_02_multi': notyetstrong, |
| 1019 'final_variable_assignment_test_03_multi': notyetstrong, |
| 1020 'final_variable_assignment_test_04_multi': notyetstrong, |
| 1021 'first_class_types_literals_test_03_multi': notyetstrong, |
| 1022 'first_class_types_literals_test_04_multi': notyetstrong, |
| 1023 'first_class_types_literals_test_05_multi': notyetstrong, |
| 1024 'first_class_types_literals_test_06_multi': notyetstrong, |
| 1025 'first_class_types_literals_test_07_multi': notyetstrong, |
| 1026 'first_class_types_literals_test_08_multi': notyetstrong, |
| 1027 'first_class_types_literals_test_09_multi': notyetstrong, |
| 1028 'first_class_types_literals_test_10_multi': notyetstrong, |
| 1029 'first_class_types_literals_test_11_multi': notyetstrong, |
| 1030 'first_class_types_literals_test_12_multi': notyetstrong, |
| 1031 'for_in_side_effects_test': notyetstrong, |
| 1032 'function_literals2_test': notyetstrong, |
| 1033 'function_literals_test': notyetstrong, |
| 1034 'function_malformed_result_type_test': notyetstrong, |
| 1035 'function_subtype_bound_closure7_test': notyetstrong, |
| 1036 'function_subtype_checked0_test': notyetstrong, |
| 1037 'function_subtype_closure0_test': notyetstrong, |
| 1038 'function_subtype_closure1_test': notyetstrong, |
| 1039 'function_subtype_factory1_test': notyetstrong, |
| 1040 'function_subtype_inline1_test': notyetstrong, |
| 1041 'function_subtype_inline2_test': notyetstrong, |
| 1042 'function_subtype_setter0_test': notyetstrong, |
| 1043 'function_syntax_test_00_multi': notyetstrong, |
| 1044 'function_syntax_test_01_multi': notyetstrong, |
| 1045 'function_syntax_test_02_multi': notyetstrong, |
| 1046 'function_syntax_test_03_multi': notyetstrong, |
| 1047 'function_syntax_test_04_multi': notyetstrong, |
| 1048 'function_syntax_test_05_multi': notyetstrong, |
| 1049 'function_syntax_test_06_multi': notyetstrong, |
| 1050 'function_syntax_test_07_multi': notyetstrong, |
| 1051 'function_syntax_test_08_multi': notyetstrong, |
| 1052 'function_syntax_test_09_multi': notyetstrong, |
| 1053 'function_syntax_test_10_multi': notyetstrong, |
| 1054 'function_syntax_test_11_multi': notyetstrong, |
| 1055 'function_syntax_test_12_multi': notyetstrong, |
| 1056 'function_syntax_test_13_multi': notyetstrong, |
| 1057 'function_syntax_test_14_multi': notyetstrong, |
| 1058 'function_syntax_test_15_multi': notyetstrong, |
| 1059 'function_syntax_test_16_multi': notyetstrong, |
| 1060 'function_syntax_test_17_multi': notyetstrong, |
| 1061 'function_syntax_test_18_multi': notyetstrong, |
| 1062 'function_syntax_test_19_multi': notyetstrong, |
| 1063 'function_syntax_test_20_multi': notyetstrong, |
| 1064 'function_syntax_test_21_multi': notyetstrong, |
| 1065 'function_syntax_test_22_multi': notyetstrong, |
| 1066 'function_syntax_test_23_multi': notyetstrong, |
| 1067 'function_syntax_test_24_multi': notyetstrong, |
| 1068 'function_syntax_test_25_multi': notyetstrong, |
| 1069 'function_syntax_test_26_multi': notyetstrong, |
| 1070 'function_syntax_test_27_multi': notyetstrong, |
| 1071 'function_syntax_test_28_multi': notyetstrong, |
| 1072 'function_syntax_test_29_multi': notyetstrong, |
| 1073 'function_syntax_test_30_multi': notyetstrong, |
| 1074 'function_syntax_test_31_multi': notyetstrong, |
| 1075 'function_syntax_test_32_multi': notyetstrong, |
| 1076 'function_syntax_test_33_multi': notyetstrong, |
| 1077 'function_syntax_test_34_multi': notyetstrong, |
| 1078 'function_syntax_test_35_multi': notyetstrong, |
| 1079 'function_syntax_test_36_multi': notyetstrong, |
| 1080 'function_syntax_test_37_multi': notyetstrong, |
| 1081 'function_syntax_test_44_multi': notyetstrong, |
| 1082 'function_syntax_test_45_multi': notyetstrong, |
| 1083 'function_syntax_test_46_multi': notyetstrong, |
| 1084 'function_syntax_test_47_multi': notyetstrong, |
| 1085 'function_syntax_test_48_multi': notyetstrong, |
| 1086 'function_syntax_test_49_multi': notyetstrong, |
| 1087 'function_syntax_test_50_multi': notyetstrong, |
| 1088 'function_syntax_test_51_multi': notyetstrong, |
| 1089 'function_syntax_test_52_multi': notyetstrong, |
| 1090 'function_syntax_test_53_multi': notyetstrong, |
| 1091 'function_syntax_test_54_multi': notyetstrong, |
| 1092 'function_syntax_test_55_multi': notyetstrong, |
| 1093 'function_syntax_test_64_multi': notyetstrong, |
| 1094 'function_syntax_test_65_multi': notyetstrong, |
| 1095 'function_syntax_test_66_multi': notyetstrong, |
| 1096 'function_syntax_test_67_multi': notyetstrong, |
| 1097 'function_syntax_test_68_multi': notyetstrong, |
| 1098 'function_syntax_test_69_multi': notyetstrong, |
| 1099 'function_syntax_test_70_multi': notyetstrong, |
| 1100 'function_syntax_test_71_multi': notyetstrong, |
| 1101 'function_syntax_test_72_multi': notyetstrong, |
| 1102 'function_syntax_test_73_multi': notyetstrong, |
| 1103 'function_syntax_test_74_multi': notyetstrong, |
| 1104 'function_test': notyetstrong, |
| 1105 'function_type2_test': notyetstrong, |
| 1106 'function_type_alias5_test_00_multi': notyetstrong, |
| 1107 'function_type_alias5_test_01_multi': notyetstrong, |
| 1108 'function_type_alias5_test_02_multi': notyetstrong, |
| 1109 'function_type_alias6_test_00_multi': notyetstrong, |
| 1110 'function_type_alias7_test_00_multi': notyetstrong, |
| 1111 'function_type_alias7_test_01_multi': notyetstrong, |
| 1112 'function_type_alias7_test_02_multi': notyetstrong, |
| 1113 'function_type_alias9_test_00_multi': notyetstrong, |
| 1114 'function_type_call_getter2_test_00_multi': notyetstrong, |
| 1115 'function_type_call_getter2_test_01_multi': notyetstrong, |
| 1116 'function_type_call_getter2_test_02_multi': notyetstrong, |
| 1117 'function_type_call_getter2_test_03_multi': notyetstrong, |
| 1118 'function_type_call_getter2_test_04_multi': notyetstrong, |
| 1119 'function_type_call_getter2_test_05_multi': notyetstrong, |
| 1120 'function_type_test': notyetstrong, |
| 1121 'generic_closure_test': notyetstrong, |
| 1122 'generic_constructor_mixin2_test': notyetstrong, |
| 1123 'generic_constructor_mixin3_test': notyetstrong, |
| 1124 'generic_constructor_mixin_test': notyetstrong, |
| 1125 'generic_field_mixin6_test_01_multi': notyetstrong, |
| 1126 'generic_field_mixin6_test_none_multi': notyetstrong, |
| 1127 'generic_instanceof_test': notyetstrong, |
| 1128 'generic_list_checked_test': notyetstrong, |
| 1129 'generic_test': notyetstrong, |
| 1130 'generics_test': notyetstrong, |
| 1131 'get_set_syntax_test_00_multi': notyetstrong, |
| 1132 'get_set_syntax_test_01_multi': notyetstrong, |
| 1133 'get_set_syntax_test_02_multi': notyetstrong, |
| 1134 'get_set_syntax_test_03_multi': notyetstrong, |
| 1135 'get_set_syntax_test_04_multi': notyetstrong, |
| 1136 'get_set_syntax_test_05_multi': notyetstrong, |
| 1137 'get_set_syntax_test_06_multi': notyetstrong, |
| 1138 'get_set_syntax_test_07_multi': notyetstrong, |
| 1139 'get_set_syntax_test_09_multi': notyetstrong, |
| 1140 'get_set_syntax_test_10_multi': notyetstrong, |
| 1141 'get_set_syntax_test_11_multi': notyetstrong, |
| 1142 'get_set_syntax_test_13_multi': notyetstrong, |
| 1143 'get_set_syntax_test_14_multi': notyetstrong, |
| 1144 'get_set_syntax_test_15_multi': notyetstrong, |
| 1145 'get_set_syntax_test_none_multi': notyetstrong, |
| 1146 'getter_no_setter2_test_00_multi': notyetstrong, |
| 1147 'getter_no_setter2_test_01_multi': notyetstrong, |
| 1148 'getter_no_setter2_test_02_multi': notyetstrong, |
| 1149 'getter_no_setter2_test_03_multi': notyetstrong, |
| 1150 'getter_no_setter_test_00_multi': notyetstrong, |
| 1151 'getter_no_setter_test_01_multi': notyetstrong, |
| 1152 'getter_no_setter_test_02_multi': notyetstrong, |
| 1153 'getter_no_setter_test_none_multi': notyetstrong, |
| 1154 'getter_override2_test_02_multi': notyetstrong, |
| 1155 'getter_override_test_00_multi': notyetstrong, |
| 1156 'getter_override_test_01_multi': notyetstrong, |
| 1157 'getter_override_test_02_multi': notyetstrong, |
| 1158 'getter_override_test_03_multi': notyetstrong, |
| 1159 'getter_parameters_test_01_multi': notyetstrong, |
| 1160 'getter_parameters_test_02_multi': notyetstrong, |
| 1161 'getter_parameters_test_03_multi': notyetstrong, |
| 1162 'getter_parameters_test_04_multi': notyetstrong, |
| 1163 'getter_setter_in_lib_test': notyetstrong, |
| 1164 'getters_setters2_test_02_multi': notyetstrong, |
| 1165 'getters_setters2_test_03_multi': notyetstrong, |
| 1166 'hello_script_test': notyetstrong, |
| 1167 'hidden_import_test_01_multi': notyetstrong, |
| 1168 'hidden_import_test_02_multi': notyetstrong, |
| 1169 'identical_const_test_01_multi': notyetstrong, |
| 1170 'identical_const_test_02_multi': notyetstrong, |
| 1171 'identical_const_test_03_multi': notyetstrong, |
| 1172 'identical_const_test_04_multi': notyetstrong, |
| 1173 'if_null_assignment_behavior_test_03_multi': notyetstrong, |
| 1174 'if_null_assignment_behavior_test_04_multi': notyetstrong, |
| 1175 'if_null_assignment_behavior_test_13_multi': notyetstrong, |
| 1176 'if_null_assignment_behavior_test_14_multi': notyetstrong, |
| 1177 'if_null_assignment_behavior_test_15_multi': notyetstrong, |
| 1178 'if_null_assignment_behavior_test_29_multi': notyetstrong, |
| 1179 'if_null_assignment_behavior_test_30_multi': notyetstrong, |
| 1180 'if_null_assignment_static_test_02_multi': notyetstrong, |
| 1181 'if_null_assignment_static_test_04_multi': notyetstrong, |
| 1182 'if_null_assignment_static_test_05_multi': notyetstrong, |
| 1183 'if_null_assignment_static_test_06_multi': notyetstrong, |
| 1184 'if_null_assignment_static_test_07_multi': notyetstrong, |
| 1185 'if_null_assignment_static_test_09_multi': notyetstrong, |
| 1186 'if_null_assignment_static_test_11_multi': notyetstrong, |
| 1187 'if_null_assignment_static_test_12_multi': notyetstrong, |
| 1188 'if_null_assignment_static_test_13_multi': notyetstrong, |
| 1189 'if_null_assignment_static_test_14_multi': notyetstrong, |
| 1190 'if_null_assignment_static_test_16_multi': notyetstrong, |
| 1191 'if_null_assignment_static_test_18_multi': notyetstrong, |
| 1192 'if_null_assignment_static_test_19_multi': notyetstrong, |
| 1193 'if_null_assignment_static_test_20_multi': notyetstrong, |
| 1194 'if_null_assignment_static_test_21_multi': notyetstrong, |
| 1195 'if_null_assignment_static_test_23_multi': notyetstrong, |
| 1196 'if_null_assignment_static_test_25_multi': notyetstrong, |
| 1197 'if_null_assignment_static_test_26_multi': notyetstrong, |
| 1198 'if_null_assignment_static_test_27_multi': notyetstrong, |
| 1199 'if_null_assignment_static_test_28_multi': notyetstrong, |
| 1200 'if_null_assignment_static_test_30_multi': notyetstrong, |
| 1201 'if_null_assignment_static_test_32_multi': notyetstrong, |
| 1202 'if_null_assignment_static_test_33_multi': notyetstrong, |
| 1203 'if_null_assignment_static_test_34_multi': notyetstrong, |
| 1204 'if_null_assignment_static_test_35_multi': notyetstrong, |
| 1205 'if_null_assignment_static_test_37_multi': notyetstrong, |
| 1206 'if_null_assignment_static_test_39_multi': notyetstrong, |
| 1207 'if_null_assignment_static_test_40_multi': notyetstrong, |
| 1208 'if_null_assignment_static_test_41_multi': notyetstrong, |
| 1209 'if_null_assignment_static_test_42_multi': notyetstrong, |
| 1210 'if_null_behavior_test_06_multi': notyetstrong, |
| 1211 'if_null_behavior_test_07_multi': notyetstrong, |
| 1212 'if_null_behavior_test_09_multi': notyetstrong, |
| 1213 'if_null_behavior_test_10_multi': notyetstrong, |
| 1214 'if_null_behavior_test_12_multi': notyetstrong, |
| 1215 'if_null_behavior_test_13_multi': notyetstrong, |
| 1216 'if_null_behavior_test_14_multi': notyetstrong, |
| 1217 'if_null_behavior_test_15_multi': notyetstrong, |
| 1218 'if_null_behavior_test_16_multi': notyetstrong, |
| 1219 'if_null_precedence_test_01_multi': notyetstrong, |
| 1220 'if_null_precedence_test_02_multi': notyetstrong, |
| 1221 'if_null_precedence_test_03_multi': notyetstrong, |
| 1222 'if_null_precedence_test_04_multi': notyetstrong, |
| 1223 'if_null_precedence_test_05_multi': notyetstrong, |
| 1224 'if_null_precedence_test_06_multi': notyetstrong, |
| 1225 'if_null_precedence_test_07_multi': notyetstrong, |
| 1226 'if_null_precedence_test_08_multi': notyetstrong, |
| 1227 'if_null_precedence_test_none_multi': notyetstrong, |
| 1228 'illegal_declaration_test_01_multi': notyetstrong, |
| 1229 'illegal_initializer_test_01_multi': notyetstrong, |
| 1230 'illegal_initializer_test_02_multi': notyetstrong, |
| 1231 'illegal_initializer_test_03_multi': notyetstrong, |
| 1232 'illegal_initializer_test_04_multi': notyetstrong, |
| 1233 'illegal_invocation_test_01_multi': notyetstrong, |
| 1234 'implicit_this_test_01_multi': notyetstrong, |
| 1235 'implicit_this_test_02_multi': notyetstrong, |
| 1236 'implicit_this_test_04_multi': notyetstrong, |
| 1237 'implicit_this_test_none_multi': notyetstrong, |
| 1238 'implied_interface_test': notyetstrong, |
| 1239 'import_combinators_test': notyetstrong, |
| 1240 'import_core_prefix_test': notyetstrong, |
| 1241 'import_self_test_01_multi': notyetstrong, |
| 1242 'inference_captured_variable2_test': notyetstrong, |
| 1243 'inference_captured_variable_test': notyetstrong, |
| 1244 'inferrer_constructor5_test_01_multi': notyetstrong, |
| 1245 'inferrer_this_access_test': notyetstrong, |
| 1246 'inline_effect_context_test': notyetstrong, |
| 1247 'inline_in_for_initializer_and_bailout_test': notyetstrong, |
| 1248 'inline_super_test': notyetstrong, |
| 1249 'inline_test_context_test': notyetstrong, |
| 1250 'inline_value_context_test': notyetstrong, |
| 1251 'inlined_throw_test': notyetstrong, |
| 1252 'instanceof3_test': notyetstrong, |
| 1253 'instantiate_type_variable_test_01_multi': notyetstrong, |
| 1254 'interceptor2_test': notyetstrong, |
| 1255 'interceptor3_test': notyetstrong, |
| 1256 'interceptor6_test': notyetstrong, |
| 1257 'interceptor7_test': notyetstrong, |
| 1258 'interceptor_test': notyetstrong, |
| 1259 'interface_cycle_test_01_multi': notyetstrong, |
| 1260 'interface_cycle_test_02_multi': notyetstrong, |
| 1261 'interface_test_00_multi': notyetstrong, |
| 1262 'interface_test_none_multi': notyetstrong, |
| 1263 'internal_library_test_02_multi': notyetstrong, |
| 1264 'invocation_mirror2_test': notyetstrong, |
| 1265 'invocation_mirror_invoke_on2_test': notyetstrong, |
| 1266 'invocation_mirror_invoke_on_test': notyetstrong, |
| 1267 'invocation_mirror_test': notyetstrong, |
| 1268 'is_function_test': notyetstrong, |
| 1269 'is_malformed_type_test_94_multi': notyetstrong, |
| 1270 'is_malformed_type_test_95_multi': notyetstrong, |
| 1271 'is_malformed_type_test_96_multi': notyetstrong, |
| 1272 'is_malformed_type_test_97_multi': notyetstrong, |
| 1273 'is_malformed_type_test_98_multi': notyetstrong, |
| 1274 'is_malformed_type_test_99_multi': notyetstrong, |
| 1275 'is_not_class2_test': notyetstrong, |
| 1276 'is_object_test': notyetstrong, |
| 1277 'isnot_malformed_type_test': notyetstrong, |
| 1278 'issue11724_test': notyetstrong, |
| 1279 'issue11793_test': notyetstrong, |
| 1280 'issue13474_test': notyetstrong, |
| 1281 'issue1363_test': notyetstrong, |
| 1282 'issue15606_test_01_multi': notyetstrong, |
| 1283 'issue18628_1_test_01_multi': notyetstrong, |
| 1284 'issue18628_2_test_01_multi': notyetstrong, |
| 1285 'issue21159_test': notyetstrong, |
| 1286 'issue3806_test': notyetstrong, |
| 1287 'keyword_type_expression_test_01_multi': notyetstrong, |
| 1288 'keyword_type_expression_test_02_multi': notyetstrong, |
| 1289 'keyword_type_expression_test_03_multi': notyetstrong, |
| 1290 'label_test': notyetstrong, |
| 1291 'lazy_static6_test': notyetstrong, |
| 1292 'least_upper_bound_expansive_test_01_multi': notyetstrong, |
| 1293 'least_upper_bound_expansive_test_02_multi': notyetstrong, |
| 1294 'least_upper_bound_expansive_test_03_multi': notyetstrong, |
| 1295 'least_upper_bound_expansive_test_04_multi': notyetstrong, |
| 1296 'least_upper_bound_expansive_test_05_multi': notyetstrong, |
| 1297 'least_upper_bound_expansive_test_06_multi': notyetstrong, |
| 1298 'least_upper_bound_expansive_test_07_multi': notyetstrong, |
| 1299 'least_upper_bound_expansive_test_08_multi': notyetstrong, |
| 1300 'least_upper_bound_expansive_test_09_multi': notyetstrong, |
| 1301 'least_upper_bound_expansive_test_10_multi': notyetstrong, |
| 1302 'least_upper_bound_expansive_test_11_multi': notyetstrong, |
| 1303 'least_upper_bound_expansive_test_12_multi': notyetstrong, |
| 1304 'least_upper_bound_test_03_multi': notyetstrong, |
| 1305 'least_upper_bound_test_04_multi': notyetstrong, |
| 1306 'least_upper_bound_test_05_multi': notyetstrong, |
| 1307 'least_upper_bound_test_10_multi': notyetstrong, |
| 1308 'least_upper_bound_test_19_multi': notyetstrong, |
| 1309 'least_upper_bound_test_20_multi': notyetstrong, |
| 1310 'least_upper_bound_test_23_multi': notyetstrong, |
| 1311 'least_upper_bound_test_24_multi': notyetstrong, |
| 1312 'least_upper_bound_test_29_multi': notyetstrong, |
| 1313 'least_upper_bound_test_30_multi': notyetstrong, |
| 1314 'least_upper_bound_test_32_multi': notyetstrong, |
| 1315 'library1_test': notyetstrong, |
| 1316 'library_ambiguous_test_00_multi': notyetstrong, |
| 1317 'library_ambiguous_test_01_multi': notyetstrong, |
| 1318 'library_ambiguous_test_02_multi': notyetstrong, |
| 1319 'library_ambiguous_test_03_multi': notyetstrong, |
| 1320 'library_ambiguous_test_04_multi': notyetstrong, |
| 1321 'library_ambiguous_test_05_multi': notyetstrong, |
| 1322 'library_juxtaposition_test': notyetstrong, |
| 1323 'library_prefixes_test': notyetstrong, |
| 1324 'list_double_index_in_loop2_test': notyetstrong, |
| 1325 'list_double_index_in_loop_test': notyetstrong, |
| 1326 'list_literal1_test_01_multi': notyetstrong, |
| 1327 'list_literal4_test': notyetstrong, |
| 1328 'list_literal_syntax_test_00_multi': notyetstrong, |
| 1329 'list_literal_syntax_test_01_multi': notyetstrong, |
| 1330 'list_literal_syntax_test_02_multi': notyetstrong, |
| 1331 'list_literal_syntax_test_03_multi': notyetstrong, |
| 1332 'list_literal_syntax_test_04_multi': notyetstrong, |
| 1333 'list_literal_syntax_test_05_multi': notyetstrong, |
| 1334 'list_literal_syntax_test_06_multi': notyetstrong, |
| 1335 'list_literal_syntax_test_07_multi': notyetstrong, |
| 1336 'list_literal_test': notyetstrong, |
| 1337 'list_test': notyetstrong, |
| 1338 'literal_unary_plus_test_01_multi': notyetstrong, |
| 1339 'literal_unary_plus_test_02_multi': notyetstrong, |
| 1340 'literal_unary_plus_test_03_multi': notyetstrong, |
| 1341 'local_function2_test': notyetstrong, |
| 1342 'local_function3_test': notyetstrong, |
| 1343 'local_function_test': notyetstrong, |
| 1344 'logical_expression3_test': notyetstrong, |
| 1345 'malbounded_instantiation_test_01_multi': notyetstrong, |
| 1346 'malbounded_instantiation_test_02_multi': notyetstrong, |
| 1347 'malbounded_instantiation_test_03_multi': notyetstrong, |
| 1348 'malbounded_redirecting_factory2_test_01_multi': notyetstrong, |
| 1349 'malbounded_redirecting_factory2_test_02_multi': notyetstrong, |
| 1350 'malbounded_redirecting_factory2_test_03_multi': notyetstrong, |
| 1351 'malbounded_redirecting_factory2_test_04_multi': notyetstrong, |
| 1352 'malbounded_redirecting_factory2_test_none_multi': notyetstrong, |
| 1353 'malbounded_redirecting_factory_test_01_multi': notyetstrong, |
| 1354 'malbounded_redirecting_factory_test_02_multi': notyetstrong, |
| 1355 'malbounded_redirecting_factory_test_03_multi': notyetstrong, |
| 1356 'malbounded_redirecting_factory_test_04_multi': notyetstrong, |
| 1357 'malbounded_redirecting_factory_test_none_multi': notyetstrong, |
| 1358 'malbounded_type_cast2_test': notyetstrong, |
| 1359 'malbounded_type_cast_test': notyetstrong, |
| 1360 'malbounded_type_literal_test': notyetstrong, |
| 1361 'malbounded_type_test2_test': notyetstrong, |
| 1362 'malbounded_type_test_test_01_multi': notyetstrong, |
| 1363 'malbounded_type_test_test_02_multi': notyetstrong, |
| 1364 'malbounded_type_test_test_03_multi': notyetstrong, |
| 1365 'malbounded_type_test_test_04_multi': notyetstrong, |
| 1366 'malformed2_test_00_multi': notyetstrong, |
| 1367 'malformed2_test_01_multi': notyetstrong, |
| 1368 'malformed2_test_none_multi': notyetstrong, |
| 1369 'malformed_bound_test_01_multi': notyetstrong, |
| 1370 'malformed_inheritance_test_01_multi': notyetstrong, |
| 1371 'malformed_inheritance_test_02_multi': notyetstrong, |
| 1372 'malformed_inheritance_test_03_multi': notyetstrong, |
| 1373 'malformed_inheritance_test_04_multi': notyetstrong, |
| 1374 'malformed_inheritance_test_05_multi': notyetstrong, |
| 1375 'malformed_inheritance_test_06_multi': notyetstrong, |
| 1376 'malformed_inheritance_test_07_multi': notyetstrong, |
| 1377 'malformed_inheritance_test_08_multi': notyetstrong, |
| 1378 'malformed_inheritance_test_09_multi': notyetstrong, |
| 1379 'malformed_inheritance_test_10_multi': notyetstrong, |
| 1380 'malformed_inheritance_test_11_multi': notyetstrong, |
| 1381 'malformed_inheritance_test_12_multi': notyetstrong, |
| 1382 'malformed_test_01_multi': notyetstrong, |
| 1383 'malformed_test_02_multi': notyetstrong, |
| 1384 'malformed_test_03_multi': notyetstrong, |
| 1385 'malformed_test_04_multi': notyetstrong, |
| 1386 'malformed_test_06_multi': notyetstrong, |
| 1387 'malformed_test_none_multi': notyetstrong, |
| 1388 'malformed_type_test': notyetstrong, |
| 1389 'many_overridden_no_such_method_test': notyetstrong, |
| 1390 'map_literal1_test_01_multi': notyetstrong, |
| 1391 'map_literal3_test': notyetstrong, |
| 1392 'map_literal4_test': notyetstrong, |
| 1393 'map_literal6_test': notyetstrong, |
| 1394 'map_literal8_test': notyetstrong, |
| 1395 'metadata_test': notyetstrong, |
| 1396 'method_override2_test_00_multi': notyetstrong, |
| 1397 'method_override2_test_01_multi': notyetstrong, |
| 1398 'method_override2_test_02_multi': notyetstrong, |
| 1399 'method_override2_test_03_multi': notyetstrong, |
| 1400 'method_override3_test_00_multi': notyetstrong, |
| 1401 'method_override3_test_01_multi': notyetstrong, |
| 1402 'method_override3_test_02_multi': notyetstrong, |
| 1403 'method_override4_test': notyetstrong, |
| 1404 'method_override5_test': notyetstrong, |
| 1405 'method_override6_test': notyetstrong, |
| 1406 'method_override7_test_00_multi': notyetstrong, |
| 1407 'method_override7_test_01_multi': notyetstrong, |
| 1408 'method_override7_test_02_multi': notyetstrong, |
| 1409 'method_override8_test_00_multi': notyetstrong, |
| 1410 'method_override8_test_01_multi': notyetstrong, |
| 1411 'method_override8_test_03_multi': notyetstrong, |
| 1412 'method_override_test': notyetstrong, |
| 1413 'minify_closure_variable_collision_test': notyetstrong, |
| 1414 'missing_const_constructor_test_02_multi': notyetstrong, |
| 1415 'missing_const_constructor_test_03_multi': notyetstrong, |
| 1416 'missing_const_constructor_test_04_multi': notyetstrong, |
| 1417 'missing_const_constructor_test_05_multi': notyetstrong, |
| 1418 'missing_const_constructor_test_06_multi': notyetstrong, |
| 1419 'missing_part_of_tag_test_01_multi': notyetstrong, |
| 1420 'mixin_black_listed_test_01_multi': notyetstrong, |
| 1421 'mixin_black_listed_test_02_multi': notyetstrong, |
| 1422 'mixin_black_listed_test_03_multi': notyetstrong, |
| 1423 'mixin_black_listed_test_04_multi': notyetstrong, |
| 1424 'mixin_black_listed_test_05_multi': notyetstrong, |
| 1425 'mixin_black_listed_test_06_multi': notyetstrong, |
| 1426 'mixin_black_listed_test_07_multi': notyetstrong, |
| 1427 'mixin_black_listed_test_08_multi': notyetstrong, |
| 1428 'mixin_cyclic_test_01_multi': notyetstrong, |
| 1429 'mixin_cyclic_test_02_multi': notyetstrong, |
| 1430 'mixin_extends_field_test': notyetstrong, |
| 1431 'mixin_extends_method_test': notyetstrong, |
| 1432 'mixin_field_test': notyetstrong, |
| 1433 'mixin_forwarding_constructor4_test_01_multi': notyetstrong, |
| 1434 'mixin_forwarding_constructor4_test_02_multi': notyetstrong, |
| 1435 'mixin_forwarding_constructor4_test_03_multi': notyetstrong, |
| 1436 'mixin_illegal_constructor_test_01_multi': notyetstrong, |
| 1437 'mixin_illegal_constructor_test_02_multi': notyetstrong, |
| 1438 'mixin_illegal_constructor_test_03_multi': notyetstrong, |
| 1439 'mixin_illegal_constructor_test_04_multi': notyetstrong, |
| 1440 'mixin_illegal_constructor_test_05_multi': notyetstrong, |
| 1441 'mixin_illegal_constructor_test_06_multi': notyetstrong, |
| 1442 'mixin_illegal_constructor_test_07_multi': notyetstrong, |
| 1443 'mixin_illegal_constructor_test_08_multi': notyetstrong, |
| 1444 'mixin_illegal_constructor_test_09_multi': notyetstrong, |
| 1445 'mixin_illegal_constructor_test_10_multi': notyetstrong, |
| 1446 'mixin_illegal_constructor_test_11_multi': notyetstrong, |
| 1447 'mixin_illegal_constructor_test_12_multi': notyetstrong, |
| 1448 'mixin_illegal_constructor_test_13_multi': notyetstrong, |
| 1449 'mixin_illegal_constructor_test_14_multi': notyetstrong, |
| 1450 'mixin_illegal_constructor_test_15_multi': notyetstrong, |
| 1451 'mixin_illegal_constructor_test_16_multi': notyetstrong, |
| 1452 'mixin_illegal_cycles_test_01_multi': notyetstrong, |
| 1453 'mixin_illegal_cycles_test_02_multi': notyetstrong, |
| 1454 'mixin_illegal_cycles_test_03_multi': notyetstrong, |
| 1455 'mixin_illegal_cycles_test_04_multi': notyetstrong, |
| 1456 'mixin_illegal_cycles_test_05_multi': notyetstrong, |
| 1457 'mixin_illegal_cycles_test_06_multi': notyetstrong, |
| 1458 'mixin_illegal_object_test_01_multi': notyetstrong, |
| 1459 'mixin_illegal_object_test_02_multi': notyetstrong, |
| 1460 'mixin_illegal_static_access_test': notyetstrong, |
| 1461 'mixin_illegal_super_use_test_01_multi': notyetstrong, |
| 1462 'mixin_illegal_super_use_test_02_multi': notyetstrong, |
| 1463 'mixin_illegal_super_use_test_03_multi': notyetstrong, |
| 1464 'mixin_illegal_super_use_test_04_multi': notyetstrong, |
| 1465 'mixin_illegal_super_use_test_05_multi': notyetstrong, |
| 1466 'mixin_illegal_super_use_test_06_multi': notyetstrong, |
| 1467 'mixin_illegal_super_use_test_07_multi': notyetstrong, |
| 1468 'mixin_illegal_super_use_test_08_multi': notyetstrong, |
| 1469 'mixin_illegal_super_use_test_09_multi': notyetstrong, |
| 1470 'mixin_illegal_super_use_test_10_multi': notyetstrong, |
| 1471 'mixin_illegal_super_use_test_11_multi': notyetstrong, |
| 1472 'mixin_illegal_superclass_test_01_multi': notyetstrong, |
| 1473 'mixin_illegal_superclass_test_02_multi': notyetstrong, |
| 1474 'mixin_illegal_superclass_test_03_multi': notyetstrong, |
| 1475 'mixin_illegal_superclass_test_04_multi': notyetstrong, |
| 1476 'mixin_illegal_superclass_test_05_multi': notyetstrong, |
| 1477 'mixin_illegal_superclass_test_06_multi': notyetstrong, |
| 1478 'mixin_illegal_superclass_test_07_multi': notyetstrong, |
| 1479 'mixin_illegal_superclass_test_08_multi': notyetstrong, |
| 1480 'mixin_illegal_superclass_test_09_multi': notyetstrong, |
| 1481 'mixin_illegal_superclass_test_10_multi': notyetstrong, |
| 1482 'mixin_illegal_superclass_test_11_multi': notyetstrong, |
| 1483 'mixin_illegal_superclass_test_12_multi': notyetstrong, |
| 1484 'mixin_illegal_superclass_test_13_multi': notyetstrong, |
| 1485 'mixin_illegal_superclass_test_14_multi': notyetstrong, |
| 1486 'mixin_illegal_superclass_test_15_multi': notyetstrong, |
| 1487 'mixin_illegal_superclass_test_16_multi': notyetstrong, |
| 1488 'mixin_illegal_superclass_test_17_multi': notyetstrong, |
| 1489 'mixin_illegal_superclass_test_18_multi': notyetstrong, |
| 1490 'mixin_illegal_superclass_test_19_multi': notyetstrong, |
| 1491 'mixin_illegal_superclass_test_20_multi': notyetstrong, |
| 1492 'mixin_illegal_superclass_test_21_multi': notyetstrong, |
| 1493 'mixin_illegal_superclass_test_22_multi': notyetstrong, |
| 1494 'mixin_illegal_superclass_test_23_multi': notyetstrong, |
| 1495 'mixin_illegal_superclass_test_24_multi': notyetstrong, |
| 1496 'mixin_illegal_superclass_test_25_multi': notyetstrong, |
| 1497 'mixin_illegal_superclass_test_26_multi': notyetstrong, |
| 1498 'mixin_illegal_superclass_test_27_multi': notyetstrong, |
| 1499 'mixin_illegal_superclass_test_28_multi': notyetstrong, |
| 1500 'mixin_illegal_superclass_test_29_multi': notyetstrong, |
| 1501 'mixin_illegal_superclass_test_30_multi': notyetstrong, |
| 1502 'mixin_illegal_syntax_test_01_multi': notyetstrong, |
| 1503 'mixin_illegal_syntax_test_02_multi': notyetstrong, |
| 1504 'mixin_illegal_syntax_test_03_multi': notyetstrong, |
| 1505 'mixin_illegal_syntax_test_04_multi': notyetstrong, |
| 1506 'mixin_illegal_syntax_test_05_multi': notyetstrong, |
| 1507 'mixin_illegal_syntax_test_06_multi': notyetstrong, |
| 1508 'mixin_illegal_syntax_test_07_multi': notyetstrong, |
| 1509 'mixin_illegal_syntax_test_08_multi': notyetstrong, |
| 1510 'mixin_illegal_syntax_test_09_multi': notyetstrong, |
| 1511 'mixin_illegal_syntax_test_10_multi': notyetstrong, |
| 1512 'mixin_illegal_syntax_test_11_multi': notyetstrong, |
| 1513 'mixin_illegal_syntax_test_12_multi': notyetstrong, |
| 1514 'mixin_illegal_syntax_test_13_multi': notyetstrong, |
| 1515 'mixin_illegal_syntax_test_14_multi': notyetstrong, |
| 1516 'mixin_illegal_syntax_test_none_multi': notyetstrong, |
| 1517 'mixin_invalid_bound2_test_01_multi': notyetstrong, |
| 1518 'mixin_invalid_bound2_test_02_multi': notyetstrong, |
| 1519 'mixin_invalid_bound2_test_03_multi': notyetstrong, |
| 1520 'mixin_invalid_bound2_test_04_multi': notyetstrong, |
| 1521 'mixin_invalid_bound2_test_05_multi': notyetstrong, |
| 1522 'mixin_invalid_bound2_test_06_multi': notyetstrong, |
| 1523 'mixin_invalid_bound2_test_07_multi': notyetstrong, |
| 1524 'mixin_invalid_bound2_test_08_multi': notyetstrong, |
| 1525 'mixin_invalid_bound2_test_09_multi': notyetstrong, |
| 1526 'mixin_invalid_bound2_test_10_multi': notyetstrong, |
| 1527 'mixin_invalid_bound2_test_11_multi': notyetstrong, |
| 1528 'mixin_invalid_bound2_test_12_multi': notyetstrong, |
| 1529 'mixin_invalid_bound2_test_13_multi': notyetstrong, |
| 1530 'mixin_invalid_bound2_test_14_multi': notyetstrong, |
| 1531 'mixin_invalid_bound2_test_none_multi': notyetstrong, |
| 1532 'mixin_invalid_bound_test_01_multi': notyetstrong, |
| 1533 'mixin_invalid_bound_test_02_multi': notyetstrong, |
| 1534 'mixin_invalid_bound_test_03_multi': notyetstrong, |
| 1535 'mixin_invalid_bound_test_04_multi': notyetstrong, |
| 1536 'mixin_invalid_bound_test_05_multi': notyetstrong, |
| 1537 'mixin_invalid_bound_test_06_multi': notyetstrong, |
| 1538 'mixin_invalid_bound_test_07_multi': notyetstrong, |
| 1539 'mixin_invalid_bound_test_08_multi': notyetstrong, |
| 1540 'mixin_invalid_bound_test_09_multi': notyetstrong, |
| 1541 'mixin_invalid_bound_test_10_multi': notyetstrong, |
| 1542 'mixin_invalid_bound_test_none_multi': notyetstrong, |
| 1543 'mixin_invalid_inheritance1_test_01_multi': notyetstrong, |
| 1544 'mixin_invalid_inheritance1_test_02_multi': notyetstrong, |
| 1545 'mixin_invalid_inheritance1_test_03_multi': notyetstrong, |
| 1546 'mixin_invalid_inheritance2_test_01_multi': notyetstrong, |
| 1547 'mixin_invalid_inheritance2_test_02_multi': notyetstrong, |
| 1548 'mixin_invalid_inheritance2_test_03_multi': notyetstrong, |
| 1549 'mixin_lib_extends_field_test': notyetstrong, |
| 1550 'mixin_lib_extends_method_test': notyetstrong, |
| 1551 'mixin_method_test': notyetstrong, |
| 1552 'mixin_super_bound2_test_01_multi': notyetstrong, |
| 1553 'mixin_super_bound2_test_none_multi': notyetstrong, |
| 1554 'mixin_super_bound_test': notyetstrong, |
| 1555 'mixin_super_constructor2_test': notyetstrong, |
| 1556 'mixin_super_constructor_default_test': notyetstrong, |
| 1557 'mixin_super_constructor_named_test_01_multi': notyetstrong, |
| 1558 'mixin_super_constructor_named_test_none_multi': notyetstrong, |
| 1559 'mixin_super_constructor_positionals_test_01_multi': notyetstrong, |
| 1560 'mixin_super_constructor_positionals_test_none_multi': notyetstrong, |
| 1561 'mixin_super_constructor_test': notyetstrong, |
| 1562 'mixin_super_test': notyetstrong, |
| 1563 'mixin_type_parameter4_test': notyetstrong, |
| 1564 'mixin_type_parameters_errors_test_01_multi': notyetstrong, |
| 1565 'mixin_type_parameters_errors_test_02_multi': notyetstrong, |
| 1566 'mixin_type_parameters_errors_test_03_multi': notyetstrong, |
| 1567 'mixin_type_parameters_errors_test_04_multi': notyetstrong, |
| 1568 'mixin_type_parameters_errors_test_05_multi': notyetstrong, |
| 1569 'mixin_type_parameters_mixin_extends_test': notyetstrong, |
| 1570 'mixin_type_parameters_mixin_test': notyetstrong, |
| 1571 'mixin_type_parameters_simple_test': notyetstrong, |
| 1572 'mixin_type_parameters_super_extends_test': notyetstrong, |
| 1573 'mixin_type_parameters_super_test': notyetstrong, |
| 1574 'mixin_with_two_implicit_constructors_test': notyetstrong, |
| 1575 'multi_pass2_test': notyetstrong, |
| 1576 'multi_pass_test': notyetstrong, |
| 1577 'multiline_newline_test_01_multi': notyetstrong, |
| 1578 'multiline_newline_test_02_multi': notyetstrong, |
| 1579 'multiline_newline_test_03_multi': notyetstrong, |
| 1580 'named_constructor_test_01_multi': notyetstrong, |
| 1581 'named_constructor_test_02_multi': notyetstrong, |
| 1582 'named_constructor_test_03_multi': notyetstrong, |
| 1583 'named_constructor_test_04_multi': notyetstrong, |
| 1584 'named_constructor_test_05_multi': notyetstrong, |
| 1585 'named_constructor_test_06_multi': notyetstrong, |
| 1586 'named_constructor_test_07_multi': notyetstrong, |
| 1587 'named_constructor_test_08_multi': notyetstrong, |
| 1588 'named_constructor_test_09_multi': notyetstrong, |
| 1589 'named_constructor_test_10_multi': notyetstrong, |
| 1590 'named_parameters2_test': notyetstrong, |
| 1591 'named_parameters3_test': notyetstrong, |
| 1592 'named_parameters4_test': notyetstrong, |
| 1593 'named_parameters_aggregated_test_01_multi': notyetstrong, |
| 1594 'named_parameters_aggregated_test_02_multi': notyetstrong, |
| 1595 'named_parameters_aggregated_test_03_multi': notyetstrong, |
| 1596 'named_parameters_aggregated_test_04_multi': notyetstrong, |
| 1597 'named_parameters_aggregated_test_05_multi': notyetstrong, |
| 1598 'named_parameters_test_01_multi': notyetstrong, |
| 1599 'named_parameters_test_02_multi': notyetstrong, |
| 1600 'named_parameters_test_03_multi': notyetstrong, |
| 1601 'named_parameters_test_04_multi': notyetstrong, |
| 1602 'named_parameters_test_05_multi': notyetstrong, |
| 1603 'named_parameters_test_06_multi': notyetstrong, |
| 1604 'named_parameters_test_07_multi': notyetstrong, |
| 1605 'named_parameters_test_08_multi': notyetstrong, |
| 1606 'named_parameters_test_09_multi': notyetstrong, |
| 1607 'named_parameters_test_10_multi': notyetstrong, |
| 1608 'named_parameters_type_test_01_multi': notyetstrong, |
| 1609 'named_parameters_type_test_02_multi': notyetstrong, |
| 1610 'named_parameters_type_test_03_multi': notyetstrong, |
| 1611 'naming3_test': notyetstrong, |
| 1612 'naming_test': notyetstrong, |
| 1613 'new_expression_type_args_test_00_multi': notyetstrong, |
| 1614 'new_expression_type_args_test_01_multi': notyetstrong, |
| 1615 'new_expression_type_args_test_02_multi': notyetstrong, |
| 1616 'new_prefix_test_01_multi': notyetstrong, |
| 1617 'no_such_constructor2_test': notyetstrong, |
| 1618 'no_such_constructor_test_01_multi': notyetstrong, |
| 1619 'no_such_method2_test': notyetstrong, |
| 1620 'no_such_method_dispatcher_test': notyetstrong, |
| 1621 'no_such_method_test': notyetstrong, |
| 1622 'non_parameterized_factory2_test': notyetstrong, |
| 1623 'non_parameterized_factory_test': notyetstrong, |
| 1624 'not_enough_positional_arguments_test_00_multi': notyetstrong, |
| 1625 'not_enough_positional_arguments_test_01_multi': notyetstrong, |
| 1626 'not_enough_positional_arguments_test_02_multi': notyetstrong, |
| 1627 'not_enough_positional_arguments_test_03_multi': notyetstrong, |
| 1628 'not_enough_positional_arguments_test_05_multi': notyetstrong, |
| 1629 'not_enough_positional_arguments_test_06_multi': notyetstrong, |
| 1630 'not_enough_positional_arguments_test_07_multi': notyetstrong, |
| 1631 'null_test_01_multi': notyetstrong, |
| 1632 'null_test_02_multi': notyetstrong, |
| 1633 'null_test_03_multi': notyetstrong, |
| 1634 'null_test_none_multi': notyetstrong, |
| 1635 'number_identifier_test_01_multi': notyetstrong, |
| 1636 'number_identifier_test_02_multi': notyetstrong, |
| 1637 'number_identifier_test_03_multi': notyetstrong, |
| 1638 'number_identifier_test_04_multi': notyetstrong, |
| 1639 'number_identifier_test_06_multi': notyetstrong, |
| 1640 'number_identifier_test_07_multi': notyetstrong, |
| 1641 'number_identifier_test_08_multi': notyetstrong, |
| 1642 'number_identifier_test_09_multi': notyetstrong, |
| 1643 'number_identifier_test_10_multi': notyetstrong, |
| 1644 'number_identifier_test_11_multi': notyetstrong, |
| 1645 'number_identity_test': notyetstrong, |
| 1646 'on_catch_malformed_type_test': notyetstrong, |
| 1647 'operator5_test': notyetstrong, |
| 1648 'operator_equals_test': notyetstrong, |
| 1649 'operator_test': notyetstrong, |
| 1650 'optimized_constant_array_string_access_test': notyetstrong, |
| 1651 'optional_named_parameters_test_01_multi': notyetstrong, |
| 1652 'optional_named_parameters_test_02_multi': notyetstrong, |
| 1653 'optional_named_parameters_test_03_multi': notyetstrong, |
| 1654 'optional_named_parameters_test_04_multi': notyetstrong, |
| 1655 'optional_named_parameters_test_05_multi': notyetstrong, |
| 1656 'optional_named_parameters_test_06_multi': notyetstrong, |
| 1657 'optional_named_parameters_test_07_multi': notyetstrong, |
| 1658 'optional_named_parameters_test_08_multi': notyetstrong, |
| 1659 'optional_named_parameters_test_09_multi': notyetstrong, |
| 1660 'overridden_no_such_method_test': notyetstrong, |
| 1661 'override_field_test_01_multi': notyetstrong, |
| 1662 'override_field_test_02_multi': notyetstrong, |
| 1663 'override_inheritance_abstract_test_02_multi': notyetstrong, |
| 1664 'override_inheritance_abstract_test_03_multi': notyetstrong, |
| 1665 'override_inheritance_abstract_test_04_multi': notyetstrong, |
| 1666 'override_inheritance_abstract_test_07_multi': notyetstrong, |
| 1667 'override_inheritance_abstract_test_08_multi': notyetstrong, |
| 1668 'override_inheritance_abstract_test_09_multi': notyetstrong, |
| 1669 'override_inheritance_abstract_test_10_multi': notyetstrong, |
| 1670 'override_inheritance_abstract_test_11_multi': notyetstrong, |
| 1671 'override_inheritance_abstract_test_12_multi': notyetstrong, |
| 1672 'override_inheritance_abstract_test_13_multi': notyetstrong, |
| 1673 'override_inheritance_abstract_test_14_multi': notyetstrong, |
| 1674 'override_inheritance_abstract_test_17_multi': notyetstrong, |
| 1675 'override_inheritance_abstract_test_19_multi': notyetstrong, |
| 1676 'override_inheritance_abstract_test_20_multi': notyetstrong, |
| 1677 'override_inheritance_abstract_test_21_multi': notyetstrong, |
| 1678 'override_inheritance_abstract_test_22_multi': notyetstrong, |
| 1679 'override_inheritance_abstract_test_23_multi': notyetstrong, |
| 1680 'override_inheritance_abstract_test_24_multi': notyetstrong, |
| 1681 'override_inheritance_abstract_test_25_multi': notyetstrong, |
| 1682 'override_inheritance_abstract_test_26_multi': notyetstrong, |
| 1683 'override_inheritance_field_test_04_multi': notyetstrong, |
| 1684 'override_inheritance_field_test_05_multi': notyetstrong, |
| 1685 'override_inheritance_field_test_06_multi': notyetstrong, |
| 1686 'override_inheritance_field_test_07_multi': notyetstrong, |
| 1687 'override_inheritance_field_test_08_multi': notyetstrong, |
| 1688 'override_inheritance_field_test_09_multi': notyetstrong, |
| 1689 'override_inheritance_field_test_10_multi': notyetstrong, |
| 1690 'override_inheritance_field_test_11_multi': notyetstrong, |
| 1691 'override_inheritance_field_test_26_multi': notyetstrong, |
| 1692 'override_inheritance_field_test_28_multi': notyetstrong, |
| 1693 'override_inheritance_field_test_29_multi': notyetstrong, |
| 1694 'override_inheritance_field_test_30_multi': notyetstrong, |
| 1695 'override_inheritance_field_test_31_multi': notyetstrong, |
| 1696 'override_inheritance_field_test_32_multi': notyetstrong, |
| 1697 'override_inheritance_field_test_33_multi': notyetstrong, |
| 1698 'override_inheritance_field_test_33a_multi': notyetstrong, |
| 1699 'override_inheritance_field_test_34_multi': notyetstrong, |
| 1700 'override_inheritance_field_test_41_multi': notyetstrong, |
| 1701 'override_inheritance_field_test_42_multi': notyetstrong, |
| 1702 'override_inheritance_field_test_43_multi': notyetstrong, |
| 1703 'override_inheritance_field_test_44_multi': notyetstrong, |
| 1704 'override_inheritance_field_test_45_multi': notyetstrong, |
| 1705 'override_inheritance_field_test_46_multi': notyetstrong, |
| 1706 'override_inheritance_field_test_47_multi': notyetstrong, |
| 1707 'override_inheritance_field_test_48_multi': notyetstrong, |
| 1708 'override_inheritance_field_test_49_multi': notyetstrong, |
| 1709 'override_inheritance_field_test_50_multi': notyetstrong, |
| 1710 'override_inheritance_field_test_53_multi': notyetstrong, |
| 1711 'override_inheritance_field_test_54_multi': notyetstrong, |
| 1712 'override_inheritance_generic_test_02_multi': notyetstrong, |
| 1713 'override_inheritance_generic_test_04_multi': notyetstrong, |
| 1714 'override_inheritance_generic_test_06_multi': notyetstrong, |
| 1715 'override_inheritance_generic_test_07_multi': notyetstrong, |
| 1716 'override_inheritance_generic_test_08_multi': notyetstrong, |
| 1717 'override_inheritance_generic_test_09_multi': notyetstrong, |
| 1718 'override_inheritance_generic_test_10_multi': notyetstrong, |
| 1719 'override_inheritance_method_test_04_multi': notyetstrong, |
| 1720 'override_inheritance_method_test_05_multi': notyetstrong, |
| 1721 'override_inheritance_method_test_06_multi': notyetstrong, |
| 1722 'override_inheritance_method_test_11_multi': notyetstrong, |
| 1723 'override_inheritance_method_test_12_multi': notyetstrong, |
| 1724 'override_inheritance_method_test_13_multi': notyetstrong, |
| 1725 'override_inheritance_method_test_14_multi': notyetstrong, |
| 1726 'override_inheritance_method_test_19_multi': notyetstrong, |
| 1727 'override_inheritance_method_test_20_multi': notyetstrong, |
| 1728 'override_inheritance_method_test_21_multi': notyetstrong, |
| 1729 'override_inheritance_method_test_27_multi': notyetstrong, |
| 1730 'override_inheritance_method_test_28_multi': notyetstrong, |
| 1731 'override_inheritance_method_test_29_multi': notyetstrong, |
| 1732 'override_inheritance_method_test_30_multi': notyetstrong, |
| 1733 'override_inheritance_method_test_31_multi': notyetstrong, |
| 1734 'override_inheritance_method_test_32_multi': notyetstrong, |
| 1735 'override_inheritance_method_test_33_multi': notyetstrong, |
| 1736 'override_inheritance_mixed_test_01_multi': notyetstrong, |
| 1737 'override_inheritance_mixed_test_02_multi': notyetstrong, |
| 1738 'override_inheritance_mixed_test_03_multi': notyetstrong, |
| 1739 'override_inheritance_mixed_test_04_multi': notyetstrong, |
| 1740 'override_inheritance_mixed_test_06_multi': notyetstrong, |
| 1741 'override_inheritance_mixed_test_07_multi': notyetstrong, |
| 1742 'override_inheritance_mixed_test_08_multi': notyetstrong, |
| 1743 'override_inheritance_mixed_test_09_multi': notyetstrong, |
| 1744 'override_inheritance_no_such_method_test_01_multi': notyetstrong, |
| 1745 'override_inheritance_no_such_method_test_02_multi': notyetstrong, |
| 1746 'override_inheritance_no_such_method_test_06_multi': notyetstrong, |
| 1747 'override_inheritance_no_such_method_test_07_multi': notyetstrong, |
| 1748 'override_inheritance_no_such_method_test_09_multi': notyetstrong, |
| 1749 'override_inheritance_no_such_method_test_10_multi': notyetstrong, |
| 1750 'override_inheritance_no_such_method_test_12_multi': notyetstrong, |
| 1751 'override_method_with_field_test_01_multi': notyetstrong, |
| 1752 'override_method_with_field_test_02_multi': notyetstrong, |
| 1753 'parameter_default_test_01_multi': notyetstrong, |
| 1754 'parameter_default_test_02_multi': notyetstrong, |
| 1755 'parameter_default_test_03_multi': notyetstrong, |
| 1756 'parameter_default_test_04_multi': notyetstrong, |
| 1757 'parameter_default_test_05_multi': notyetstrong, |
| 1758 'parameter_default_test_06_multi': notyetstrong, |
| 1759 'parameter_default_test_07_multi': notyetstrong, |
| 1760 'parameter_default_test_08_multi': notyetstrong, |
| 1761 'parameter_initializer_test': notyetstrong, |
| 1762 'parser_quirks_test': notyetstrong, |
| 1763 'part2_test': notyetstrong, |
| 1764 'part_test': notyetstrong, |
| 1765 'positional_parameters_type_test_01_multi': notyetstrong, |
| 1766 'positional_parameters_type_test_02_multi': notyetstrong, |
| 1767 'prefix14_test': notyetstrong, |
| 1768 'prefix15_test': notyetstrong, |
| 1769 'prefix16_test': notyetstrong, |
| 1770 'prefix22_test': notyetstrong, |
| 1771 'prefix23_test': notyetstrong, |
| 1772 'prefix_assignment_test_01_multi': notyetstrong, |
| 1773 'prefix_assignment_test_02_multi': notyetstrong, |
| 1774 'prefix_identifier_reference_test_01_multi': notyetstrong, |
| 1775 'prefix_identifier_reference_test_02_multi': notyetstrong, |
| 1776 'prefix_identifier_reference_test_03_multi': notyetstrong, |
| 1777 'prefix_identifier_reference_test_04_multi': notyetstrong, |
| 1778 'prefix_identifier_reference_test_05_multi': notyetstrong, |
| 1779 'prefix_unqualified_invocation_test_01_multi': notyetstrong, |
| 1780 'prefix_unqualified_invocation_test_02_multi': notyetstrong, |
| 1781 'private2_test': notyetstrong, |
| 1782 'private3_test': notyetstrong, |
| 1783 'private_access_test_01_multi': notyetstrong, |
| 1784 'private_access_test_02_multi': notyetstrong, |
| 1785 'private_access_test_03_multi': notyetstrong, |
| 1786 'private_access_test_04_multi': notyetstrong, |
| 1787 'private_access_test_05_multi': notyetstrong, |
| 1788 'private_access_test_06_multi': notyetstrong, |
| 1789 'private_mixin2_test': notyetstrong, |
| 1790 'private_test': notyetstrong, |
| 1791 'propagated_argument_type_check_test': notyetstrong, |
| 1792 'property_field_override_test': notyetstrong, |
| 1793 'proxy2_test_01_multi': notyetstrong, |
| 1794 'proxy2_test_02_multi': notyetstrong, |
| 1795 'proxy3_test_01_multi': notyetstrong, |
| 1796 'proxy3_test_02_multi': notyetstrong, |
| 1797 'proxy3_test_03_multi': notyetstrong, |
| 1798 'proxy3_test_04_multi': notyetstrong, |
| 1799 'proxy_test_01_multi': notyetstrong, |
| 1800 'proxy_test_02_multi': notyetstrong, |
| 1801 'proxy_test_05_multi': notyetstrong, |
| 1802 'proxy_test_06_multi': notyetstrong, |
| 1803 'redirecting_constructor_initializer_test': notyetstrong, |
| 1804 'redirecting_factory_default_values_test_01_multi': notyetstrong, |
| 1805 'redirecting_factory_default_values_test_02_multi': notyetstrong, |
| 1806 'redirecting_factory_default_values_test_none_multi': notyetstrong, |
| 1807 'redirecting_factory_incompatible_signature_test': notyetstrong, |
| 1808 'redirecting_factory_infinite_steps_test_01_multi': notyetstrong, |
| 1809 'redirecting_factory_infinite_steps_test_02_multi': notyetstrong, |
| 1810 'redirecting_factory_long_test': notyetstrong, |
| 1811 'redirecting_factory_malbounded_test_01_multi': notyetstrong, |
| 1812 'redirecting_factory_malbounded_test_none_multi': notyetstrong, |
| 1813 'ref_before_declaration_test_00_multi': notyetstrong, |
| 1814 'ref_before_declaration_test_01_multi': notyetstrong, |
| 1815 'ref_before_declaration_test_02_multi': notyetstrong, |
| 1816 'ref_before_declaration_test_03_multi': notyetstrong, |
| 1817 'ref_before_declaration_test_04_multi': notyetstrong, |
| 1818 'ref_before_declaration_test_05_multi': notyetstrong, |
| 1819 'ref_before_declaration_test_06_multi': notyetstrong, |
| 1820 'ref_before_declaration_test_07_multi': notyetstrong, |
| 1821 'ref_before_declaration_test_none_multi': notyetstrong, |
| 1822 'regress_12561_test': notyetstrong, |
| 1823 'regress_13494_test': notyetstrong, |
| 1824 'regress_14348_test': notyetstrong, |
| 1825 'regress_17382_test': notyetstrong, |
| 1826 'regress_19413_test_01_multi': notyetstrong, |
| 1827 'regress_19728_test': notyetstrong, |
| 1828 'regress_20394_test_01_multi': notyetstrong, |
| 1829 'regress_21793_test_01_multi': notyetstrong, |
| 1830 'regress_21912_test_01_multi': notyetstrong, |
| 1831 'regress_21912_test_02_multi': notyetstrong, |
| 1832 'regress_22438_test': notyetstrong, |
| 1833 'regress_22936_test_01_multi': notyetstrong, |
| 1834 'regress_23038_test_01_multi': notyetstrong, |
| 1835 'regress_23051_test_01_multi': notyetstrong, |
| 1836 'regress_23408_test': notyetstrong, |
| 1837 'return_type_test': notyetstrong, |
| 1838 'rewrite_implicit_this_test_01_multi': notyetstrong, |
| 1839 'scope_variable_test_01_multi': notyetstrong, |
| 1840 'setter_no_getter_call_test_01_multi': notyetstrong, |
| 1841 'setter_override2_test_00_multi': notyetstrong, |
| 1842 'setter_override_test_00_multi': notyetstrong, |
| 1843 'setter_override_test_01_multi': notyetstrong, |
| 1844 'setter_override_test_02_multi': notyetstrong, |
| 1845 'setter_override_test_03_multi': notyetstrong, |
| 1846 'static_field1_test': notyetstrong, |
| 1847 'static_field1a_test': notyetstrong, |
| 1848 'static_field2_test': notyetstrong, |
| 1849 'static_field2a_test': notyetstrong, |
| 1850 'static_field3_test_01_multi': notyetstrong, |
| 1851 'static_field3_test_02_multi': notyetstrong, |
| 1852 'static_field3_test_03_multi': notyetstrong, |
| 1853 'static_field3_test_04_multi': notyetstrong, |
| 1854 'static_field_test_01_multi': notyetstrong, |
| 1855 'static_field_test_02_multi': notyetstrong, |
| 1856 'static_field_test_03_multi': notyetstrong, |
| 1857 'static_field_test_04_multi': notyetstrong, |
| 1858 'static_final_field2_test_01_multi': notyetstrong, |
| 1859 'static_final_field2_test_02_multi': notyetstrong, |
| 1860 'static_getter_no_setter1_test_01_multi': notyetstrong, |
| 1861 'static_getter_no_setter2_test_01_multi': notyetstrong, |
| 1862 'static_getter_no_setter3_test_01_multi': notyetstrong, |
| 1863 'static_initializer_type_error_test': notyetstrong, |
| 1864 'static_parameter_test_01_multi': notyetstrong, |
| 1865 'static_parameter_test_02_multi': notyetstrong, |
| 1866 'static_parameter_test_03_multi': notyetstrong, |
| 1867 'static_parameter_test_04_multi': notyetstrong, |
| 1868 'static_parameter_test_05_multi': notyetstrong, |
| 1869 'static_parameter_test_06_multi': notyetstrong, |
| 1870 'static_parameter_test_07_multi': notyetstrong, |
| 1871 'static_parameter_test_08_multi': notyetstrong, |
| 1872 'static_parameter_test_09_multi': notyetstrong, |
| 1873 'static_parameter_test_10_multi': notyetstrong, |
| 1874 'static_parameter_test_11_multi': notyetstrong, |
| 1875 'static_parameter_test_12_multi': notyetstrong, |
| 1876 'static_setter_get_test_01_multi': notyetstrong, |
| 1877 'static_top_level_test_00_multi': notyetstrong, |
| 1878 'static_top_level_test_01_multi': notyetstrong, |
| 1879 'static_top_level_test_02_multi': notyetstrong, |
| 1880 'static_top_level_test_03_multi': notyetstrong, |
| 1881 'static_top_level_test_04_multi': notyetstrong, |
| 1882 'static_top_level_test_05_multi': notyetstrong, |
| 1883 'static_top_level_test_06_multi': notyetstrong, |
| 1884 'static_top_level_test_07_multi': notyetstrong, |
| 1885 'string_interpolate_test': notyetstrong, |
| 1886 'string_interpolation9_test_10_multi': notyetstrong, |
| 1887 'string_interpolation9_test_11_multi': notyetstrong, |
| 1888 'string_interpolation9_test_12_multi': notyetstrong, |
| 1889 'string_interpolation9_test_13_multi': notyetstrong, |
| 1890 'string_interpolation9_test_14_multi': notyetstrong, |
| 1891 'string_interpolation9_test_15_multi': notyetstrong, |
| 1892 'string_interpolation9_test_16_multi': notyetstrong, |
| 1893 'string_interpolation9_test_17_multi': notyetstrong, |
| 1894 'string_interpolation9_test_18_multi': notyetstrong, |
| 1895 'string_interpolation9_test_19_multi': notyetstrong, |
| 1896 'string_interpolation9_test_1_multi': notyetstrong, |
| 1897 'string_interpolation9_test_20_multi': notyetstrong, |
| 1898 'string_interpolation9_test_2_multi': notyetstrong, |
| 1899 'string_interpolation9_test_3_multi': notyetstrong, |
| 1900 'string_interpolation9_test_4_multi': notyetstrong, |
| 1901 'string_interpolation9_test_5_multi': notyetstrong, |
| 1902 'string_interpolation9_test_6_multi': notyetstrong, |
| 1903 'string_interpolation9_test_7_multi': notyetstrong, |
| 1904 'string_interpolation9_test_8_multi': notyetstrong, |
| 1905 'string_interpolation9_test_9_multi': notyetstrong, |
| 1906 'string_interpolation_and_buffer_test': notyetstrong, |
| 1907 'string_interpolation_test_01_multi': notyetstrong, |
| 1908 'string_no_operator_test': notyetstrong, |
| 1909 'string_split_test': notyetstrong, |
| 1910 'string_supertype_checked_test': notyetstrong, |
| 1911 'string_test': notyetstrong, |
| 1912 'substring_test_01_multi': notyetstrong, |
| 1913 'super_assign_test': notyetstrong, |
| 1914 'super_bound_closure_test_01_multi': notyetstrong, |
| 1915 'super_bound_closure_test_none_multi': notyetstrong, |
| 1916 'super_call3_test_01_multi': notyetstrong, |
| 1917 'super_call3_test_02_multi': notyetstrong, |
| 1918 'super_call4_test': notyetstrong, |
| 1919 'super_conditional_operator_test_01_multi': notyetstrong, |
| 1920 'super_conditional_operator_test_02_multi': notyetstrong, |
| 1921 'super_conditional_operator_test_03_multi': notyetstrong, |
| 1922 'super_conditional_operator_test_04_multi': notyetstrong, |
| 1923 'super_conditional_operator_test_05_multi': notyetstrong, |
| 1924 'super_conditional_operator_test_06_multi': notyetstrong, |
| 1925 'super_conditional_operator_test_07_multi': notyetstrong, |
| 1926 'super_conditional_operator_test_08_multi': notyetstrong, |
| 1927 'super_conditional_operator_test_09_multi': notyetstrong, |
| 1928 'super_conditional_operator_test_10_multi': notyetstrong, |
| 1929 'super_conditional_operator_test_11_multi': notyetstrong, |
| 1930 'super_conditional_operator_test_12_multi': notyetstrong, |
| 1931 'super_conditional_operator_test_13_multi': notyetstrong, |
| 1932 'super_conditional_operator_test_14_multi': notyetstrong, |
| 1933 'super_conditional_operator_test_15_multi': notyetstrong, |
| 1934 'super_conditional_operator_test_16_multi': notyetstrong, |
| 1935 'super_conditional_operator_test_17_multi': notyetstrong, |
| 1936 'super_conditional_operator_test_18_multi': notyetstrong, |
| 1937 'super_field_access_test': notyetstrong, |
| 1938 'super_first_constructor_test': notyetstrong, |
| 1939 'super_getter_setter_test': notyetstrong, |
| 1940 'super_operator_index5_test': notyetstrong, |
| 1941 'super_operator_index6_test': notyetstrong, |
| 1942 'super_operator_index7_test': notyetstrong, |
| 1943 'super_operator_index8_test': notyetstrong, |
| 1944 'super_operator_index_test_01_multi': notyetstrong, |
| 1945 'super_operator_index_test_02_multi': notyetstrong, |
| 1946 'super_operator_index_test_03_multi': notyetstrong, |
| 1947 'super_operator_index_test_04_multi': notyetstrong, |
| 1948 'super_operator_index_test_05_multi': notyetstrong, |
| 1949 'super_operator_index_test_06_multi': notyetstrong, |
| 1950 'super_operator_index_test_07_multi': notyetstrong, |
| 1951 'super_operator_test': notyetstrong, |
| 1952 'super_test': notyetstrong, |
| 1953 'switch6_test': notyetstrong, |
| 1954 'switch_bad_case_test_01_multi': notyetstrong, |
| 1955 'switch_bad_case_test_02_multi': notyetstrong, |
| 1956 'switch_case_test_00_multi': notyetstrong, |
| 1957 'switch_case_test_01_multi': notyetstrong, |
| 1958 'switch_case_test_02_multi': notyetstrong, |
| 1959 'switch_case_test_none_multi': notyetstrong, |
| 1960 'switch_fallthru_test': notyetstrong, |
| 1961 'symbol_conflict_test': notyetstrong, |
| 1962 'symbol_literal_test_01_multi': notyetstrong, |
| 1963 'sync_generator1_test_01_multi': notyetstrong, |
| 1964 'sync_generator2_test_01_multi': notyetstrong, |
| 1965 'sync_generator2_test_02_multi': notyetstrong, |
| 1966 'sync_generator2_test_03_multi': notyetstrong, |
| 1967 'sync_generator2_test_04_multi': notyetstrong, |
| 1968 'sync_generator2_test_05_multi': notyetstrong, |
| 1969 'sync_generator2_test_06_multi': notyetstrong, |
| 1970 'sync_generator2_test_07_multi': notyetstrong, |
| 1971 'sync_generator2_test_08_multi': notyetstrong, |
| 1972 'sync_generator2_test_09_multi': notyetstrong, |
| 1973 'sync_generator2_test_10_multi': notyetstrong, |
| 1974 'sync_generator2_test_11_multi': notyetstrong, |
| 1975 'sync_generator2_test_20_multi': notyetstrong, |
| 1976 'sync_generator2_test_30_multi': notyetstrong, |
| 1977 'sync_generator2_test_40_multi': notyetstrong, |
| 1978 'sync_generator2_test_41_multi': notyetstrong, |
| 1979 'sync_generator2_test_50_multi': notyetstrong, |
| 1980 'sync_generator2_test_51_multi': notyetstrong, |
| 1981 'sync_generator2_test_52_multi': notyetstrong, |
| 1982 'syntax_test_01_multi': notyetstrong, |
| 1983 'syntax_test_02_multi': notyetstrong, |
| 1984 'syntax_test_03_multi': notyetstrong, |
| 1985 'syntax_test_04_multi': notyetstrong, |
| 1986 'syntax_test_05_multi': notyetstrong, |
| 1987 'syntax_test_06_multi': notyetstrong, |
| 1988 'syntax_test_07_multi': notyetstrong, |
| 1989 'syntax_test_08_multi': notyetstrong, |
| 1990 'syntax_test_09_multi': notyetstrong, |
| 1991 'syntax_test_10_multi': notyetstrong, |
| 1992 'syntax_test_11_multi': notyetstrong, |
| 1993 'syntax_test_12_multi': notyetstrong, |
| 1994 'syntax_test_13_multi': notyetstrong, |
| 1995 'syntax_test_14_multi': notyetstrong, |
| 1996 'syntax_test_15_multi': notyetstrong, |
| 1997 'syntax_test_16_multi': notyetstrong, |
| 1998 'syntax_test_17_multi': notyetstrong, |
| 1999 'syntax_test_18_multi': notyetstrong, |
| 2000 'syntax_test_19_multi': notyetstrong, |
| 2001 'syntax_test_20_multi': notyetstrong, |
| 2002 'syntax_test_21_multi': notyetstrong, |
| 2003 'syntax_test_22_multi': notyetstrong, |
| 2004 'syntax_test_23_multi': notyetstrong, |
| 2005 'syntax_test_24_multi': notyetstrong, |
| 2006 'syntax_test_25_multi': notyetstrong, |
| 2007 'syntax_test_26_multi': notyetstrong, |
| 2008 'syntax_test_27_multi': notyetstrong, |
| 2009 'syntax_test_28_multi': notyetstrong, |
| 2010 'syntax_test_29_multi': notyetstrong, |
| 2011 'syntax_test_30_multi': notyetstrong, |
| 2012 'syntax_test_31_multi': notyetstrong, |
| 2013 'syntax_test_32_multi': notyetstrong, |
| 2014 'syntax_test_33_multi': notyetstrong, |
| 2015 'syntax_test_34_multi': notyetstrong, |
| 2016 'syntax_test_35_multi': notyetstrong, |
| 2017 'syntax_test_36_multi': notyetstrong, |
| 2018 'syntax_test_37_multi': notyetstrong, |
| 2019 'syntax_test_38_multi': notyetstrong, |
| 2020 'syntax_test_39_multi': notyetstrong, |
| 2021 'syntax_test_40_multi': notyetstrong, |
| 2022 'syntax_test_41_multi': notyetstrong, |
| 2023 'syntax_test_42_multi': notyetstrong, |
| 2024 'syntax_test_43_multi': notyetstrong, |
| 2025 'syntax_test_44_multi': notyetstrong, |
| 2026 'syntax_test_45_multi': notyetstrong, |
| 2027 'syntax_test_46_multi': notyetstrong, |
| 2028 'syntax_test_47_multi': notyetstrong, |
| 2029 'syntax_test_48_multi': notyetstrong, |
| 2030 'syntax_test_49_multi': notyetstrong, |
| 2031 'syntax_test_50_multi': notyetstrong, |
| 2032 'syntax_test_51_multi': notyetstrong, |
| 2033 'syntax_test_52_multi': notyetstrong, |
| 2034 'syntax_test_53_multi': notyetstrong, |
| 2035 'syntax_test_54_multi': notyetstrong, |
| 2036 'syntax_test_55_multi': notyetstrong, |
| 2037 'syntax_test_56_multi': notyetstrong, |
| 2038 'syntax_test_57_multi': notyetstrong, |
| 2039 'syntax_test_58_multi': notyetstrong, |
| 2040 'syntax_test_59_multi': notyetstrong, |
| 2041 'syntax_test_60_multi': notyetstrong, |
| 2042 'syntax_test_61_multi': notyetstrong, |
| 2043 'syntax_test_62_multi': notyetstrong, |
| 2044 'syntax_test_63_multi': notyetstrong, |
| 2045 'syntax_test_64_multi': notyetstrong, |
| 2046 'syntax_test_65_multi': notyetstrong, |
| 2047 'syntax_test_none_multi': notyetstrong, |
| 2048 'tearoff_basic_test': notyetstrong, |
| 2049 'tearoff_constructor_basic_test': notyetstrong, |
| 2050 'third_test': notyetstrong, |
| 2051 'this_conditional_operator_test_01_multi': notyetstrong, |
| 2052 'this_test_01_multi': notyetstrong, |
| 2053 'this_test_02_multi': notyetstrong, |
| 2054 'this_test_03_multi': notyetstrong, |
| 2055 'this_test_04_multi': notyetstrong, |
| 2056 'this_test_05_multi': notyetstrong, |
| 2057 'this_test_06_multi': notyetstrong, |
| 2058 'this_test_07_multi': notyetstrong, |
| 2059 'this_test_08_multi': notyetstrong, |
| 2060 'throw_expr_test': notyetstrong, |
| 2061 'top_level_entry_test': notyetstrong, |
| 2062 'top_level_getter_no_setter1_test_01_multi': notyetstrong, |
| 2063 'top_level_getter_no_setter2_test_01_multi': notyetstrong, |
| 2064 'top_level_multiple_files_test': notyetstrong, |
| 2065 'toplevel_collision1_test_00_multi': notyetstrong, |
| 2066 'toplevel_collision1_test_01_multi': notyetstrong, |
| 2067 'toplevel_collision1_test_02_multi': notyetstrong, |
| 2068 'toplevel_collision2_test_00_multi': notyetstrong, |
| 2069 'toplevel_collision2_test_01_multi': notyetstrong, |
| 2070 'transitive_private_library_access_test': notyetstrong, |
| 2071 'try_catch_on_syntax_test_02_multi': notyetstrong, |
| 2072 'try_catch_on_syntax_test_03_multi': notyetstrong, |
| 2073 'try_catch_on_syntax_test_04_multi': notyetstrong, |
| 2074 'try_catch_on_syntax_test_05_multi': notyetstrong, |
| 2075 'try_catch_on_syntax_test_06_multi': notyetstrong, |
| 2076 'try_catch_on_syntax_test_07_multi': notyetstrong, |
| 2077 'try_catch_syntax_test_01_multi': notyetstrong, |
| 2078 'try_catch_syntax_test_02_multi': notyetstrong, |
| 2079 'try_catch_syntax_test_03_multi': notyetstrong, |
| 2080 'try_catch_syntax_test_04_multi': notyetstrong, |
| 2081 'try_catch_syntax_test_05_multi': notyetstrong, |
| 2082 'try_catch_syntax_test_06_multi': notyetstrong, |
| 2083 'try_catch_syntax_test_07_multi': notyetstrong, |
| 2084 'try_catch_syntax_test_08_multi': notyetstrong, |
| 2085 'try_catch_syntax_test_09_multi': notyetstrong, |
| 2086 'try_catch_syntax_test_10_multi': notyetstrong, |
| 2087 'try_catch_syntax_test_11_multi': notyetstrong, |
| 2088 'try_catch_syntax_test_12_multi': notyetstrong, |
| 2089 'try_catch_syntax_test_13_multi': notyetstrong, |
| 2090 'try_catch_syntax_test_14_multi': notyetstrong, |
| 2091 'try_catch_syntax_test_15_multi': notyetstrong, |
| 2092 'try_catch_syntax_test_16_multi': notyetstrong, |
| 2093 'try_catch_syntax_test_17_multi': notyetstrong, |
| 2094 'try_catch_test_01_multi': notyetstrong, |
| 2095 'try_catch_test_none_multi': notyetstrong, |
| 2096 'type_argument_in_super_type_test': notyetstrong, |
| 2097 'type_check_const_function_typedef2_test_00_multi': notyetstrong, |
| 2098 'type_check_const_function_typedef2_test_none_multi': notyetstrong, |
| 2099 'type_checks_in_factory_method_test': notyetstrong, |
| 2100 'type_error_test': notyetstrong, |
| 2101 'type_literal_prefix_call_test_00_multi': notyetstrong, |
| 2102 'type_parameter_test_01_multi': notyetstrong, |
| 2103 'type_parameter_test_02_multi': notyetstrong, |
| 2104 'type_parameter_test_03_multi': notyetstrong, |
| 2105 'type_parameter_test_04_multi': notyetstrong, |
| 2106 'type_parameter_test_05_multi': notyetstrong, |
| 2107 'type_parameter_test_06_multi': notyetstrong, |
| 2108 'type_parameter_test_none_multi': notyetstrong, |
| 2109 'type_promotion_assign_test_01_multi': notyetstrong, |
| 2110 'type_promotion_assign_test_02_multi': notyetstrong, |
| 2111 'type_promotion_assign_test_03_multi': notyetstrong, |
| 2112 'type_promotion_assign_test_04_multi': notyetstrong, |
| 2113 'type_promotion_closure_test_01_multi': notyetstrong, |
| 2114 'type_promotion_closure_test_02_multi': notyetstrong, |
| 2115 'type_promotion_closure_test_03_multi': notyetstrong, |
| 2116 'type_promotion_closure_test_04_multi': notyetstrong, |
| 2117 'type_promotion_closure_test_05_multi': notyetstrong, |
| 2118 'type_promotion_closure_test_06_multi': notyetstrong, |
| 2119 'type_promotion_closure_test_07_multi': notyetstrong, |
| 2120 'type_promotion_closure_test_08_multi': notyetstrong, |
| 2121 'type_promotion_closure_test_09_multi': notyetstrong, |
| 2122 'type_promotion_closure_test_10_multi': notyetstrong, |
| 2123 'type_promotion_closure_test_11_multi': notyetstrong, |
| 2124 'type_promotion_closure_test_12_multi': notyetstrong, |
| 2125 'type_promotion_closure_test_13_multi': notyetstrong, |
| 2126 'type_promotion_closure_test_14_multi': notyetstrong, |
| 2127 'type_promotion_closure_test_15_multi': notyetstrong, |
| 2128 'type_promotion_closure_test_16_multi': notyetstrong, |
| 2129 'type_promotion_closure_test_none_multi': notyetstrong, |
| 2130 'type_promotion_functions_test_01_multi': notyetstrong, |
| 2131 'type_promotion_functions_test_02_multi': notyetstrong, |
| 2132 'type_promotion_functions_test_03_multi': notyetstrong, |
| 2133 'type_promotion_functions_test_04_multi': notyetstrong, |
| 2134 'type_promotion_functions_test_05_multi': notyetstrong, |
| 2135 'type_promotion_functions_test_06_multi': notyetstrong, |
| 2136 'type_promotion_functions_test_07_multi': notyetstrong, |
| 2137 'type_promotion_functions_test_08_multi': notyetstrong, |
| 2138 'type_promotion_functions_test_09_multi': notyetstrong, |
| 2139 'type_promotion_functions_test_10_multi': notyetstrong, |
| 2140 'type_promotion_functions_test_11_multi': notyetstrong, |
| 2141 'type_promotion_functions_test_12_multi': notyetstrong, |
| 2142 'type_promotion_functions_test_13_multi': notyetstrong, |
| 2143 'type_promotion_functions_test_14_multi': notyetstrong, |
| 2144 'type_promotion_functions_test_none_multi': notyetstrong, |
| 2145 'type_promotion_local_test_01_multi': notyetstrong, |
| 2146 'type_promotion_local_test_02_multi': notyetstrong, |
| 2147 'type_promotion_local_test_03_multi': notyetstrong, |
| 2148 'type_promotion_local_test_04_multi': notyetstrong, |
| 2149 'type_promotion_local_test_05_multi': notyetstrong, |
| 2150 'type_promotion_local_test_06_multi': notyetstrong, |
| 2151 'type_promotion_local_test_07_multi': notyetstrong, |
| 2152 'type_promotion_local_test_08_multi': notyetstrong, |
| 2153 'type_promotion_local_test_09_multi': notyetstrong, |
| 2154 'type_promotion_local_test_10_multi': notyetstrong, |
| 2155 'type_promotion_local_test_11_multi': notyetstrong, |
| 2156 'type_promotion_local_test_12_multi': notyetstrong, |
| 2157 'type_promotion_local_test_13_multi': notyetstrong, |
| 2158 'type_promotion_local_test_14_multi': notyetstrong, |
| 2159 'type_promotion_local_test_15_multi': notyetstrong, |
| 2160 'type_promotion_local_test_16_multi': notyetstrong, |
| 2161 'type_promotion_local_test_17_multi': notyetstrong, |
| 2162 'type_promotion_local_test_18_multi': notyetstrong, |
| 2163 'type_promotion_local_test_19_multi': notyetstrong, |
| 2164 'type_promotion_local_test_20_multi': notyetstrong, |
| 2165 'type_promotion_local_test_21_multi': notyetstrong, |
| 2166 'type_promotion_local_test_22_multi': notyetstrong, |
| 2167 'type_promotion_local_test_23_multi': notyetstrong, |
| 2168 'type_promotion_local_test_24_multi': notyetstrong, |
| 2169 'type_promotion_local_test_25_multi': notyetstrong, |
| 2170 'type_promotion_local_test_26_multi': notyetstrong, |
| 2171 'type_promotion_local_test_27_multi': notyetstrong, |
| 2172 'type_promotion_local_test_28_multi': notyetstrong, |
| 2173 'type_promotion_local_test_29_multi': notyetstrong, |
| 2174 'type_promotion_local_test_30_multi': notyetstrong, |
| 2175 'type_promotion_local_test_31_multi': notyetstrong, |
| 2176 'type_promotion_local_test_32_multi': notyetstrong, |
| 2177 'type_promotion_local_test_33_multi': notyetstrong, |
| 2178 'type_promotion_local_test_34_multi': notyetstrong, |
| 2179 'type_promotion_local_test_35_multi': notyetstrong, |
| 2180 'type_promotion_local_test_36_multi': notyetstrong, |
| 2181 'type_promotion_local_test_37_multi': notyetstrong, |
| 2182 'type_promotion_local_test_38_multi': notyetstrong, |
| 2183 'type_promotion_local_test_39_multi': notyetstrong, |
| 2184 'type_promotion_local_test_40_multi': notyetstrong, |
| 2185 'type_promotion_local_test_41_multi': notyetstrong, |
| 2186 'type_promotion_logical_and_test_01_multi': notyetstrong, |
| 2187 'type_promotion_logical_and_test_02_multi': notyetstrong, |
| 2188 'type_promotion_logical_and_test_03_multi': notyetstrong, |
| 2189 'type_promotion_more_specific_test_02_multi': notyetstrong, |
| 2190 'type_promotion_more_specific_test_04_multi': notyetstrong, |
| 2191 'type_promotion_more_specific_test_06_multi': notyetstrong, |
| 2192 'type_promotion_more_specific_test_07_multi': notyetstrong, |
| 2193 'type_promotion_more_specific_test_09_multi': notyetstrong, |
| 2194 'type_promotion_more_specific_test_10_multi': notyetstrong, |
| 2195 'type_promotion_more_specific_test_11_multi': notyetstrong, |
| 2196 'type_promotion_multiple_test_01_multi': notyetstrong, |
| 2197 'type_promotion_multiple_test_02_multi': notyetstrong, |
| 2198 'type_promotion_multiple_test_03_multi': notyetstrong, |
| 2199 'type_promotion_multiple_test_04_multi': notyetstrong, |
| 2200 'type_promotion_multiple_test_05_multi': notyetstrong, |
| 2201 'type_promotion_multiple_test_06_multi': notyetstrong, |
| 2202 'type_promotion_multiple_test_07_multi': notyetstrong, |
| 2203 'type_promotion_multiple_test_08_multi': notyetstrong, |
| 2204 'type_promotion_multiple_test_09_multi': notyetstrong, |
| 2205 'type_promotion_multiple_test_10_multi': notyetstrong, |
| 2206 'type_promotion_multiple_test_11_multi': notyetstrong, |
| 2207 'type_promotion_multiple_test_12_multi': notyetstrong, |
| 2208 'type_promotion_multiple_test_13_multi': notyetstrong, |
| 2209 'type_promotion_multiple_test_14_multi': notyetstrong, |
| 2210 'type_promotion_multiple_test_15_multi': notyetstrong, |
| 2211 'type_promotion_multiple_test_16_multi': notyetstrong, |
| 2212 'type_promotion_multiple_test_17_multi': notyetstrong, |
| 2213 'type_promotion_multiple_test_18_multi': notyetstrong, |
| 2214 'type_promotion_multiple_test_19_multi': notyetstrong, |
| 2215 'type_promotion_multiple_test_20_multi': notyetstrong, |
| 2216 'type_promotion_multiple_test_21_multi': notyetstrong, |
| 2217 'type_promotion_multiple_test_22_multi': notyetstrong, |
| 2218 'type_promotion_parameter_test_01_multi': notyetstrong, |
| 2219 'type_promotion_parameter_test_02_multi': notyetstrong, |
| 2220 'type_promotion_parameter_test_03_multi': notyetstrong, |
| 2221 'type_promotion_parameter_test_04_multi': notyetstrong, |
| 2222 'type_promotion_parameter_test_05_multi': notyetstrong, |
| 2223 'type_promotion_parameter_test_06_multi': notyetstrong, |
| 2224 'type_promotion_parameter_test_07_multi': notyetstrong, |
| 2225 'type_promotion_parameter_test_08_multi': notyetstrong, |
| 2226 'type_promotion_parameter_test_09_multi': notyetstrong, |
| 2227 'type_promotion_parameter_test_10_multi': notyetstrong, |
| 2228 'type_promotion_parameter_test_11_multi': notyetstrong, |
| 2229 'type_promotion_parameter_test_12_multi': notyetstrong, |
| 2230 'type_promotion_parameter_test_13_multi': notyetstrong, |
| 2231 'type_promotion_parameter_test_14_multi': notyetstrong, |
| 2232 'type_promotion_parameter_test_15_multi': notyetstrong, |
| 2233 'type_promotion_parameter_test_16_multi': notyetstrong, |
| 2234 'type_promotion_parameter_test_17_multi': notyetstrong, |
| 2235 'type_promotion_parameter_test_18_multi': notyetstrong, |
| 2236 'type_promotion_parameter_test_19_multi': notyetstrong, |
| 2237 'type_promotion_parameter_test_20_multi': notyetstrong, |
| 2238 'type_promotion_parameter_test_21_multi': notyetstrong, |
| 2239 'type_promotion_parameter_test_22_multi': notyetstrong, |
| 2240 'type_promotion_parameter_test_23_multi': notyetstrong, |
| 2241 'type_promotion_parameter_test_24_multi': notyetstrong, |
| 2242 'type_promotion_parameter_test_25_multi': notyetstrong, |
| 2243 'type_promotion_parameter_test_26_multi': notyetstrong, |
| 2244 'type_promotion_parameter_test_27_multi': notyetstrong, |
| 2245 'type_promotion_parameter_test_28_multi': notyetstrong, |
| 2246 'type_promotion_parameter_test_29_multi': notyetstrong, |
| 2247 'type_promotion_parameter_test_30_multi': notyetstrong, |
| 2248 'type_promotion_parameter_test_31_multi': notyetstrong, |
| 2249 'type_promotion_parameter_test_32_multi': notyetstrong, |
| 2250 'type_promotion_parameter_test_33_multi': notyetstrong, |
| 2251 'type_promotion_parameter_test_34_multi': notyetstrong, |
| 2252 'type_promotion_parameter_test_35_multi': notyetstrong, |
| 2253 'type_promotion_parameter_test_36_multi': notyetstrong, |
| 2254 'type_promotion_parameter_test_37_multi': notyetstrong, |
| 2255 'type_promotion_parameter_test_38_multi': notyetstrong, |
| 2256 'type_promotion_parameter_test_39_multi': notyetstrong, |
| 2257 'type_promotion_parameter_test_40_multi': notyetstrong, |
| 2258 'type_promotion_parameter_test_41_multi': notyetstrong, |
| 2259 'type_promotion_parameter_test_42_multi': notyetstrong, |
| 2260 'type_promotion_parameter_test_43_multi': notyetstrong, |
| 2261 'type_promotion_parameter_test_44_multi': notyetstrong, |
| 2262 'type_promotion_parameter_test_45_multi': notyetstrong, |
| 2263 'type_promotion_parameter_test_46_multi': notyetstrong, |
| 2264 'type_promotion_parameter_test_47_multi': notyetstrong, |
| 2265 'type_promotion_parameter_test_48_multi': notyetstrong, |
| 2266 'type_promotion_parameter_test_49_multi': notyetstrong, |
| 2267 'type_promotion_parameter_test_50_multi': notyetstrong, |
| 2268 'type_promotion_parameter_test_51_multi': notyetstrong, |
| 2269 'type_promotion_parameter_test_52_multi': notyetstrong, |
| 2270 'type_promotion_parameter_test_54_multi': notyetstrong, |
| 2271 'type_promotion_parameter_test_55_multi': notyetstrong, |
| 2272 'type_promotion_parameter_test_56_multi': notyetstrong, |
| 2273 'type_variable_bounds2_test_00_multi': notyetstrong, |
| 2274 'type_variable_bounds2_test_01_multi': notyetstrong, |
| 2275 'type_variable_bounds2_test_02_multi': notyetstrong, |
| 2276 'type_variable_bounds2_test_03_multi': notyetstrong, |
| 2277 'type_variable_bounds2_test_04_multi': notyetstrong, |
| 2278 'type_variable_bounds2_test_05_multi': notyetstrong, |
| 2279 'type_variable_bounds2_test_06_multi': notyetstrong, |
| 2280 'type_variable_bounds2_test_none_multi': notyetstrong, |
| 2281 'type_variable_bounds3_test_00_multi': notyetstrong, |
| 2282 'type_variable_bounds4_test_01_multi': notyetstrong, |
| 2283 'type_variable_bounds4_test_none_multi': notyetstrong, |
| 2284 'type_variable_bounds_test_00_multi': notyetstrong, |
| 2285 'type_variable_bounds_test_01_multi': notyetstrong, |
| 2286 'type_variable_bounds_test_02_multi': notyetstrong, |
| 2287 'type_variable_bounds_test_03_multi': notyetstrong, |
| 2288 'type_variable_bounds_test_04_multi': notyetstrong, |
| 2289 'type_variable_bounds_test_05_multi': notyetstrong, |
| 2290 'type_variable_bounds_test_06_multi': notyetstrong, |
| 2291 'type_variable_bounds_test_07_multi': notyetstrong, |
| 2292 'type_variable_bounds_test_08_multi': notyetstrong, |
| 2293 'type_variable_bounds_test_09_multi': notyetstrong, |
| 2294 'type_variable_bounds_test_10_multi': notyetstrong, |
| 2295 'type_variable_bounds_test_none_multi': notyetstrong, |
| 2296 'type_variable_conflict2_test_01_multi': notyetstrong, |
| 2297 'type_variable_conflict2_test_02_multi': notyetstrong, |
| 2298 'type_variable_conflict2_test_03_multi': notyetstrong, |
| 2299 'type_variable_conflict2_test_04_multi': notyetstrong, |
| 2300 'type_variable_conflict2_test_05_multi': notyetstrong, |
| 2301 'type_variable_conflict2_test_06_multi': notyetstrong, |
| 2302 'type_variable_conflict2_test_07_multi': notyetstrong, |
| 2303 'type_variable_conflict2_test_08_multi': notyetstrong, |
| 2304 'type_variable_conflict2_test_09_multi': notyetstrong, |
| 2305 'type_variable_conflict2_test_10_multi': notyetstrong, |
| 2306 'type_variable_conflict_test_01_multi': notyetstrong, |
| 2307 'type_variable_conflict_test_02_multi': notyetstrong, |
| 2308 'type_variable_conflict_test_03_multi': notyetstrong, |
| 2309 'type_variable_conflict_test_04_multi': notyetstrong, |
| 2310 'type_variable_conflict_test_05_multi': notyetstrong, |
| 2311 'type_variable_conflict_test_06_multi': notyetstrong, |
| 2312 'type_variable_function_type_test': notyetstrong, |
| 2313 'type_variable_identifier_expression_test': notyetstrong, |
| 2314 'type_variable_scope2_test': notyetstrong, |
| 2315 'type_variable_scope3_test_00_multi': notyetstrong, |
| 2316 'type_variable_scope_test_00_multi': notyetstrong, |
| 2317 'type_variable_scope_test_01_multi': notyetstrong, |
| 2318 'type_variable_scope_test_02_multi': notyetstrong, |
| 2319 'type_variable_scope_test_03_multi': notyetstrong, |
| 2320 'type_variable_scope_test_04_multi': notyetstrong, |
| 2321 'type_variable_scope_test_05_multi': notyetstrong, |
| 2322 'type_variable_scope_test_none_multi': notyetstrong, |
| 2323 'typed_selector2_test': notyetstrong, |
| 2324 'typevariable_substitution2_test_01_multi': notyetstrong, |
| 2325 'typevariable_substitution2_test_02_multi': notyetstrong, |
| 2326 'typevariable_substitution2_test_none_multi': notyetstrong, |
| 2327 'unbalanced_brace_test_01_multi': notyetstrong, |
| 2328 'unbalanced_brace_test_02_multi': notyetstrong, |
| 2329 'unbound_getter_test': notyetstrong, |
| 2330 'unresolved_default_constructor_test_01_multi': notyetstrong, |
| 2331 'unsigned_right_shift_test_01_multi': notyetstrong, |
| 2332 'unsigned_right_shift_test_02_multi': notyetstrong, |
| 2333 'unsupported_operators_test_01_multi': notyetstrong, |
| 2334 'unsupported_operators_test_02_multi': notyetstrong, |
| 2335 'unsupported_operators_test_03_multi': notyetstrong, |
| 2336 'unsupported_operators_test_04_multi': notyetstrong, |
| 2337 'variable_declaration_metadata_test_01_multi': notyetstrong, |
| 2338 'variable_declaration_metadata_test_02_multi': notyetstrong, |
| 2339 'variable_declaration_metadata_test_03_multi': notyetstrong, |
| 2340 'variable_declaration_metadata_test_04_multi': notyetstrong, |
| 2341 'variable_declaration_metadata_test_05_multi': notyetstrong, |
| 2342 'variable_declaration_metadata_test_06_multi': notyetstrong, |
| 2343 'variable_declaration_metadata_test_07_multi': notyetstrong, |
| 2344 'variable_declaration_metadata_test_08_multi': notyetstrong, |
| 2345 'variable_declaration_metadata_test_09_multi': notyetstrong, |
| 2346 'variable_declaration_metadata_test_10_multi': notyetstrong, |
| 2347 'variable_declaration_metadata_test_11_multi': notyetstrong, |
| 2348 'variable_declaration_metadata_test_12_multi': notyetstrong, |
| 2349 'variable_declaration_metadata_test_13_multi': notyetstrong, |
| 2350 'variable_declaration_metadata_test_14_multi': notyetstrong, |
| 2351 'variable_declaration_metadata_test_15_multi': notyetstrong, |
| 2352 'variable_declaration_metadata_test_16_multi': notyetstrong, |
| 2353 'void_type_test': notyetstrong, |
| 2354 'wrong_number_type_arguments_test_00_multi': notyetstrong, |
| 2355 'wrong_number_type_arguments_test_01_multi': notyetstrong, |
| 2356 'wrong_number_type_arguments_test_02_multi': notyetstrong, |
331 }, | 2357 }, |
332 | 2358 |
333 'corelib': { | 2359 'corelib': { |
334 'apply2_test': fail, | 2360 'apply2_test': fail, |
335 'apply3_test': fail, | 2361 'apply3_test': fail, |
336 'apply_test': fail, | 2362 'apply_test': fail, |
337 'big_integer_parsed_arith_vm_test': fail, | 2363 'big_integer_parsed_arith_vm_test': fail, |
338 'big_integer_parsed_div_rem_vm_test': fail, | 2364 'big_integer_parsed_div_rem_vm_test': fail, |
339 'big_integer_parsed_mul_div_vm_test': fail, | 2365 'big_integer_parsed_mul_div_vm_test': fail, |
340 'bit_twiddling_bigint_test': fail, | 2366 'bit_twiddling_bigint_test': fail, |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 'string_from_list_test': skip_timeout, | 2421 'string_from_list_test': skip_timeout, |
396 'string_fromcharcodes_test': skip_timeout, | 2422 'string_fromcharcodes_test': skip_timeout, |
397 'string_operations_with_null_test': fail, | 2423 'string_operations_with_null_test': fail, |
398 'symbol_reserved_word_test_06_multi': fail, | 2424 'symbol_reserved_word_test_06_multi': fail, |
399 'symbol_reserved_word_test_09_multi': fail, | 2425 'symbol_reserved_word_test_09_multi': fail, |
400 'symbol_reserved_word_test_12_multi': fail, | 2426 'symbol_reserved_word_test_12_multi': fail, |
401 'throw_half_surrogate_pair_test_01_multi': fail, | 2427 'throw_half_surrogate_pair_test_01_multi': fail, |
402 // TODO(rnystrom): Times out because it tests a huge number of | 2428 // TODO(rnystrom): Times out because it tests a huge number of |
403 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). | 2429 // combinations of URLs (4 * 5 * 5 * 8 * 6 * 6 * 4 = 115200). |
404 'uri_parse_test': skip_timeout, | 2430 'uri_parse_test': skip_timeout, |
| 2431 |
| 2432 'big_integer_arith_vm_test_add_multi': notyetstrong, |
| 2433 'big_integer_arith_vm_test_div_multi': notyetstrong, |
| 2434 'big_integer_arith_vm_test_gcd_multi': notyetstrong, |
| 2435 'big_integer_arith_vm_test_modInv_multi': notyetstrong, |
| 2436 'big_integer_arith_vm_test_modPow_multi': notyetstrong, |
| 2437 'big_integer_arith_vm_test_mod_multi': notyetstrong, |
| 2438 'big_integer_arith_vm_test_mul_multi': notyetstrong, |
| 2439 'big_integer_arith_vm_test_negate_multi': notyetstrong, |
| 2440 'big_integer_arith_vm_test_none_multi': notyetstrong, |
| 2441 'big_integer_arith_vm_test_overflow_multi': notyetstrong, |
| 2442 'big_integer_arith_vm_test_shift_multi': notyetstrong, |
| 2443 'big_integer_arith_vm_test_sub_multi': notyetstrong, |
| 2444 'big_integer_arith_vm_test_trunDiv_multi': notyetstrong, |
| 2445 'bool_from_environment2_test_01_multi': notyetstrong, |
| 2446 'bool_from_environment2_test_02_multi': notyetstrong, |
| 2447 'bool_from_environment2_test_03_multi': notyetstrong, |
| 2448 'bool_from_environment2_test_04_multi': notyetstrong, |
| 2449 'bool_from_environment2_test_05_multi': notyetstrong, |
| 2450 'core_runtime_types_test': notyetstrong, |
| 2451 'data_resource_test': notyetstrong, |
| 2452 'duration2_test': notyetstrong, |
| 2453 'error_stack_trace_test': notyetstrong, |
| 2454 'from_environment_const_type_test_02_multi': notyetstrong, |
| 2455 'from_environment_const_type_test_03_multi': notyetstrong, |
| 2456 'from_environment_const_type_test_04_multi': notyetstrong, |
| 2457 'from_environment_const_type_test_06_multi': notyetstrong, |
| 2458 'from_environment_const_type_test_07_multi': notyetstrong, |
| 2459 'from_environment_const_type_test_08_multi': notyetstrong, |
| 2460 'from_environment_const_type_test_09_multi': notyetstrong, |
| 2461 'from_environment_const_type_test_11_multi': notyetstrong, |
| 2462 'from_environment_const_type_test_12_multi': notyetstrong, |
| 2463 'from_environment_const_type_test_13_multi': notyetstrong, |
| 2464 'from_environment_const_type_test_14_multi': notyetstrong, |
| 2465 'from_environment_const_type_test_16_multi': notyetstrong, |
| 2466 'from_environment_const_type_undefined_test_02_multi': notyetstrong, |
| 2467 'from_environment_const_type_undefined_test_03_multi': notyetstrong, |
| 2468 'from_environment_const_type_undefined_test_04_multi': notyetstrong, |
| 2469 'from_environment_const_type_undefined_test_06_multi': notyetstrong, |
| 2470 'from_environment_const_type_undefined_test_07_multi': notyetstrong, |
| 2471 'from_environment_const_type_undefined_test_08_multi': notyetstrong, |
| 2472 'from_environment_const_type_undefined_test_09_multi': notyetstrong, |
| 2473 'from_environment_const_type_undefined_test_11_multi': notyetstrong, |
| 2474 'from_environment_const_type_undefined_test_12_multi': notyetstrong, |
| 2475 'from_environment_const_type_undefined_test_13_multi': notyetstrong, |
| 2476 'from_environment_const_type_undefined_test_14_multi': notyetstrong, |
| 2477 'from_environment_const_type_undefined_test_16_multi': notyetstrong, |
| 2478 'growable_list_test': notyetstrong, |
| 2479 'hash_set_type_check_test': notyetstrong, |
| 2480 'http_resource_test': notyetstrong, |
| 2481 'int_from_environment3_test_01_multi': notyetstrong, |
| 2482 'int_from_environment3_test_02_multi': notyetstrong, |
| 2483 'int_from_environment3_test_03_multi': notyetstrong, |
| 2484 'int_from_environment3_test_04_multi': notyetstrong, |
| 2485 'int_from_environment3_test_05_multi': notyetstrong, |
| 2486 'iterable_contains2_test': notyetstrong, |
| 2487 'iterable_element_at_test': notyetstrong, |
| 2488 'iterable_fold_test': notyetstrong, |
| 2489 'iterable_mapping_test': notyetstrong, |
| 2490 'iterable_reduce_test': notyetstrong, |
| 2491 'iterable_to_list_test': notyetstrong, |
| 2492 'iterable_to_set_test': notyetstrong, |
| 2493 'linked_hash_map_from_iterable_test': notyetstrong, |
| 2494 'list_contains_argument_order_test': notyetstrong, |
| 2495 'list_filled_type_argument_test': notyetstrong, |
| 2496 'list_index_of2_test': notyetstrong, |
| 2497 'list_insert_test': notyetstrong, |
| 2498 'list_removeat_test': notyetstrong, |
| 2499 'list_test_01_multi': notyetstrong, |
| 2500 'list_test_none_multi': notyetstrong, |
| 2501 'list_unmodifiable_test': notyetstrong, |
| 2502 'map_test': notyetstrong, |
| 2503 'num_clamp_test': notyetstrong, |
| 2504 'package_resource_test': notyetstrong, |
| 2505 'print_test_01_multi': notyetstrong, |
| 2506 'print_test_none_multi': notyetstrong, |
| 2507 'set_test': notyetstrong, |
| 2508 'splay_tree_test': notyetstrong, |
| 2509 'string_base_vm_test': notyetstrong, |
| 2510 'string_from_environment3_test_01_multi': notyetstrong, |
| 2511 'string_from_environment3_test_02_multi': notyetstrong, |
| 2512 'string_from_environment3_test_03_multi': notyetstrong, |
| 2513 'string_from_environment3_test_04_multi': notyetstrong, |
| 2514 'string_from_environment3_test_05_multi': notyetstrong, |
| 2515 'string_replace_test': notyetstrong, |
| 2516 'string_test': notyetstrong, |
| 2517 'symbol_operator_test_03_multi': notyetstrong, |
| 2518 'symbol_operator_test_none_multi': notyetstrong, |
| 2519 'symbol_reserved_word_test_04_multi': notyetstrong, |
| 2520 'symbol_reserved_word_test_05_multi': notyetstrong, |
| 2521 'symbol_reserved_word_test_07_multi': notyetstrong, |
| 2522 'symbol_reserved_word_test_08_multi': notyetstrong, |
| 2523 'symbol_reserved_word_test_10_multi': notyetstrong, |
| 2524 'symbol_reserved_word_test_11_multi': notyetstrong, |
| 2525 'symbol_test_01_multi': notyetstrong, |
| 2526 'symbol_test_02_multi': notyetstrong, |
| 2527 'symbol_test_03_multi': notyetstrong, |
| 2528 'symbol_test_none_multi': notyetstrong, |
| 2529 'uri_path_test': notyetstrong, |
| 2530 'uri_query_test': notyetstrong, |
405 }, | 2531 }, |
406 | 2532 |
407 'lib/convert': { | 2533 'lib/convert': { |
408 // TODO(jmesserly): this could be a failure we didn't notice before | 2534 // TODO(jmesserly): this could be a failure we didn't notice before |
409 // because we now call the right Dart double.toString, resulting in a | 2535 // because we now call the right Dart double.toString, resulting in a |
410 // difference between -0.0 and 0? | 2536 // difference between -0.0 and 0? |
411 'chunked_conversion_json_encode1_test': fail, | 2537 'chunked_conversion_json_encode1_test': fail, |
412 | 2538 |
413 // TODO(rnystrom): A lot of the convert tests timeout. Some do pass if | 2539 // TODO(rnystrom): A lot of the convert tests timeout. Some do pass if |
414 // you increase the time by a large amount, but it's pretty gratuitous. | 2540 // you increase the time by a large amount, but it's pretty gratuitous. |
415 // I'm not sure why they are so slow. One guess is that they are spewing | 2541 // I'm not sure why they are so slow. One guess is that they are spewing |
416 // a ton of warnings, that slow down the test. | 2542 // a ton of warnings, that slow down the test. |
417 'chunked_conversion_utf84_test': skip_timeout, | 2543 'chunked_conversion_utf84_test': skip_timeout, |
418 'chunked_conversion_utf88_test': skip_timeout, | 2544 'chunked_conversion_utf88_test': skip_timeout, |
419 'chunked_conversion_utf8_test': skip_timeout, | 2545 'chunked_conversion_utf8_test': skip_timeout, |
| 2546 |
| 2547 'chunked_conversion1_test': notyetstrong, |
| 2548 |
420 'encoding_test': skip_timeout, | 2549 'encoding_test': skip_timeout, |
421 | 2550 |
422 // TODO(jmesserly): this is in an inconsistent state between our old and | 2551 // TODO(jmesserly): this is in an inconsistent state between our old and |
423 // newer SDKs. | 2552 // newer SDKs. |
424 'html_escape_test': skip_fail, | 2553 'html_escape_test': skip_fail, |
425 | 2554 |
426 // TODO(jmesserly): seems to fail or pass based on SDK version? | 2555 // TODO(jmesserly): seems to fail or pass based on SDK version? |
427 'html_escape_test': ['skip'], | 2556 'html_escape_test': ['skip'], |
428 | 2557 |
429 // TODO(rnystrom): If this test is enabled, karma gets confused and | 2558 // TODO(rnystrom): If this test is enabled, karma gets confused and |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], | 2735 'js_typed_interop_default_arg_test_explicit_argument_multi': ['unittest',
'skip', 'fail'], |
607 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] | 2736 'js_typed_interop_default_arg_test_default_value_multi': ['unittest', 'ski
p', 'fail'] |
608 }, | 2737 }, |
609 | 2738 |
610 'lib/math': { | 2739 'lib/math': { |
611 // TODO(het): triage | 2740 // TODO(het): triage |
612 'double_pow_test': skip_fail, | 2741 'double_pow_test': skip_fail, |
613 'low_test': skip_fail, | 2742 'low_test': skip_fail, |
614 'math_test': skip_fail, | 2743 'math_test': skip_fail, |
615 'math2_test': skip_fail, | 2744 'math2_test': skip_fail, |
| 2745 'min_max_test': notyetstrong, |
616 'random_big_test': skip_fail, | 2746 'random_big_test': skip_fail, |
617 'point_test': ['unittest', 'skip', 'fail'], | 2747 'point_test': ['unittest', 'skip', 'fail'], |
618 'rectangle_test': ['unittest', 'skip', 'fail'], | 2748 'rectangle_test': ['unittest', 'skip', 'fail'], |
619 }, | 2749 }, |
620 | 2750 |
621 'lib/typed_data': { | 2751 'lib/typed_data': { |
622 // No bigint or int64 support | 2752 // No bigint or int64 support |
| 2753 'float32x4_test': notyetstrong, |
| 2754 'float64x2_functional_test': notyetstrong, |
623 'int32x4_bigint_test': skip_fail, | 2755 'int32x4_bigint_test': skip_fail, |
| 2756 'int32x4_test': notyetstrong, |
624 'int64_list_load_store_test': skip_fail, | 2757 'int64_list_load_store_test': skip_fail, |
625 'typed_data_hierarchy_int64_test': skip_fail, | 2758 'typed_data_hierarchy_int64_test': skip_fail, |
626 'typed_data_list_test': fail, | 2759 'typed_data_list_test': fail, |
627 }, | 2760 }, |
628 }; | 2761 }; |
629 | 2762 |
630 function countMatches(text, regex) { | 2763 function countMatches(text, regex) { |
631 let matches = text.match(regex); | 2764 let matches = text.match(regex); |
632 return matches ? matches.length : 0; | 2765 return matches ? matches.length : 0; |
633 } | 2766 } |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 } | 2821 } |
689 } | 2822 } |
690 | 2823 |
691 test(name, function(done) { // 'function' to allow `this.timeout`. | 2824 test(name, function(done) { // 'function' to allow `this.timeout`. |
692 async_helper.asyncTestInitialize(done); | 2825 async_helper.asyncTestInitialize(done); |
693 console.debug('Running test: ' + name); | 2826 console.debug('Running test: ' + name); |
694 | 2827 |
695 let mainLibrary = dart_library.import(module)[name]; | 2828 let mainLibrary = dart_library.import(module)[name]; |
696 let negative = /negative_test/.test(name); | 2829 let negative = /negative_test/.test(name); |
697 if (has('slow')) this.timeout(10000); | 2830 if (has('slow')) this.timeout(10000); |
698 if (has('fail')) { | 2831 if (has('notyetstrong')) { |
| 2832 let e = protect(mainLibrary.main); |
| 2833 if (e == null) { |
| 2834 throw new Error( |
| 2835 "test marked as 'notyetstrong' due to " + |
| 2836 "strong mode errors, but passed"); |
| 2837 } else if (!(e instanceof Error) || |
| 2838 !e.message.startsWith("DDC Compilation Error:")) { |
| 2839 throw new Error( |
| 2840 "test marked as 'notyetstrong' due to " + |
| 2841 "strong mode errors, but ran and threw:\n" + e); |
| 2842 } |
| 2843 } else if (has('fail')) { |
699 let e = protect(mainLibrary.main); | 2844 let e = protect(mainLibrary.main); |
700 if (negative) { | 2845 if (negative) { |
701 if (e != null) { | 2846 if (e != null) { |
702 throw new Error( | 2847 throw new Error( |
703 "negative test marked as 'fail' " + | 2848 "negative test marked as 'fail' " + |
704 "but passed by throwing:\n" + e); | 2849 "but passed by throwing:\n" + e); |
705 } | 2850 } |
706 } else { | 2851 } else { |
707 if (e == null) { | 2852 if (e == null) { |
708 throw new Error("test marked as 'fail' but passed"); | 2853 throw new Error("test marked as 'fail' but passed"); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 | 2906 |
762 for (let action of unittest_tests) { | 2907 for (let action of unittest_tests) { |
763 try { | 2908 try { |
764 action(); | 2909 action(); |
765 } catch (e) { | 2910 } catch (e) { |
766 console.error("Caught error tying to setup test:", e); | 2911 console.error("Caught error tying to setup test:", e); |
767 } | 2912 } |
768 } | 2913 } |
769 }); | 2914 }); |
770 })(); | 2915 })(); |
OLD | NEW |