Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: tests/co19/co19-runtime.status

Issue 12473003: Remove deprecated StringBuffer.add, addAll and addCharCode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 [ $compiler == none && $runtime == vm && $checked ] 5 [ $compiler == none && $runtime == vm && $checked ]
6 LibTest/core/Strings/concatAll_A04_t01: Fail, OK # checks for ArgumentError. Typ eError is ok too. co19 issue 366 6 LibTest/core/Strings/concatAll_A04_t01: Fail, OK # checks for ArgumentError. Typ eError is ok too. co19 issue 366
7 LibTest/core/Strings/join_A04_t01: Fail, OK # checks for ArgumentError. TypeErro r is ok too. co19 issue 366 7 LibTest/core/Strings/join_A04_t01: Fail, OK # checks for ArgumentError. TypeErro r is ok too. co19 issue 366
8 8
9 [ $compiler == none && $runtime == vm ] 9 [ $compiler == none && $runtime == vm ]
10 Language/13_Libraries_and_Scripts/1_Imports_A02_t21: Crash # Dart issue 6060 10 Language/13_Libraries_and_Scripts/1_Imports_A02_t21: Crash # Dart issue 6060
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 LibTest/core/Set/removeAll_A01_t02: Fail # Doesn't expect null to be allowed in Set or Map keys (issue 377). 522 LibTest/core/Set/removeAll_A01_t02: Fail # Doesn't expect null to be allowed in Set or Map keys (issue 377).
523 523
524 LibTest/core/Map/forEach_A01_t07: Fail # Doesn't expect concurrent modification error (issue 376). 524 LibTest/core/Map/forEach_A01_t07: Fail # Doesn't expect concurrent modification error (issue 376).
525 525
526 LibTest/core/String/charCodes_A01_t01: Fail # Deprecated string members removed (issue 382). 526 LibTest/core/String/charCodes_A01_t01: Fail # Deprecated string members removed (issue 382).
527 LibTest/core/String/charCodeAt_A02_t01: Fail # Deprecated string members removed (issue 382). 527 LibTest/core/String/charCodeAt_A02_t01: Fail # Deprecated string members removed (issue 382).
528 LibTest/core/String/charCodeAt_A03_t01: Fail # Deprecated string members removed (issue 382). 528 LibTest/core/String/charCodeAt_A03_t01: Fail # Deprecated string members removed (issue 382).
529 LibTest/core/String/charCodeAt_A01_t01: Fail # Deprecated string members removed (issue 382). 529 LibTest/core/String/charCodeAt_A01_t01: Fail # Deprecated string members removed (issue 382).
530 LibTest/core/String/splitChars_A01_t01: Fail # Deprecated string members removed (issue 382). 530 LibTest/core/String/splitChars_A01_t01: Fail # Deprecated string members removed (issue 382).
531 531
532 LibTest/core/StringBuffer/addAll_A01_t02: Fail # StringBuffer renamed add to wri te. co19 issue 388.
533 LibTest/core/StringBuffer/add_A01_t02: Fail # StringBuffer renamed add to write. co19 issue 388.
534 LibTest/core/StringBuffer/add_A01_t01: Fail # StringBuffer renamed add to write. co19 issue 388.
535 LibTest/core/StringBuffer/addAll_A01_t01: Fail # StringBuffer renamed add to wri te. co19 issue 388.
536 LibTest/core/StringBuffer/toString_A01_t01: Fail # StringBuffer renamed add to w rite. co19 issue 388.
537 LibTest/core/RegExp/Pattern_semantics/firstMatch_Atom_A03_t02: Fail # StringBuff er renamed add to write. co19 issue 388.
538 LibTest/core/RegExp/Pattern_semantics/firstMatch_Atom_A04_t01: Fail # StringBuff er renamed add to write. co19 issue 388.
539 Language/12_Statements/01_Blocks_A01_t03: Fail # StringBuffer renamed add to wri te. co19 issue 388.
540 Language/11_Expressions/14_Function_Invocation/1_Actual_Argument_List_Evaluation _A02_t01: Fail # StringBuffer renamed add to write. co19 issue 388.
541 Language/11_Expressions/11_Instance_Creation/1_New_A09_t12: Fail # StringBuffer renamed add to write. co19 issue 388.
542 Language/11_Expressions/11_Instance_Creation/1_New_A09_t05: Fail # StringBuffer renamed add to write. co19 issue 388.
543 Language/11_Expressions/11_Instance_Creation/1_New_A13_t03: Fail # StringBuffer renamed add to write. co19 issue 388.
544 Language/11_Expressions/11_Instance_Creation/1_New_A09_t06: Fail # StringBuffer renamed add to write. co19 issue 388.
545 Language/11_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A04_t01: Fail # StringBuffer renamed add to write. co19 issue 388.
546 Language/11_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t05: Fail # StringBuffer renamed add to write. co19 issue 388.
547 Language/11_Expressions/15_Method_Invocation/4_Super_Invocation_A02_t04: Fail # StringBuffer renamed add to write. co19 issue 388.
548 Language/11_Expressions/05_Strings/1_String_Interpolation_A03_t01: Fail # String Buffer renamed add to write. co19 issue 388.
549 Language/11_Expressions/05_Strings/1_String_Interpolation_A04_t01: Fail # String Buffer renamed add to write. co19 issue 388.
550
532 [ $compiler == none && $runtime == vm && $unchecked ] 551 [ $compiler == none && $runtime == vm && $unchecked ]
533 LibTest/core/Future/chain_A02_t05: Fail # Future is in async library. co19 issue 367 552 LibTest/core/Future/chain_A02_t05: Fail # Future is in async library. co19 issue 367
534 LibTest/core/Future/transform_A02_t04: Fail # Future is in async library. co19 i ssue 367 553 LibTest/core/Future/transform_A02_t04: Fail # Future is in async library. co19 i ssue 367
535 554
536 [ $compiler == none && $runtime == vm && $checked ] 555 [ $compiler == none && $runtime == vm && $checked ]
537 LibTest/isolate/SendPort/call_A01_t01: Fail # Future is in async library. co19 i ssue 367 556 LibTest/isolate/SendPort/call_A01_t01: Fail # Future is in async library. co19 i ssue 367
538 Language/14_Types/4_Interface_Types_A08_t06: Fail # Moved collection classes fro m core to collection. co19 issue 371. 557 Language/14_Types/4_Interface_Types_A08_t06: Fail # Moved collection classes fro m core to collection. co19 issue 371.
539 558
540 [ $compiler == none && $arch == simarm ] 559 [ $compiler == none && $arch == simarm ]
541 *: Skip 560 *: Skip
542 561
543 [ $compiler == none && $arch == arm ] 562 [ $compiler == none && $arch == arm ]
544 *: Skip 563 *: Skip
545 564
546 [ $compiler == none && $arch == simmips ] 565 [ $compiler == none && $arch == simmips ]
547 *: Skip 566 *: Skip
548 567
549 [ $compiler == none && $arch == mips ] 568 [ $compiler == none && $arch == mips ]
550 *: Skip 569 *: Skip
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698