summaryrefslogtreecommitdiff
path: root/test/fixedbugs
AgeCommit message (Collapse)AuthorFilesLines
2009-04-28bug 145Ken Thompson1-0/+17
R=r OCL=27979 CL=27979
2009-04-24recognize a defined constantKen Thompson1-0/+21
as a new name in a later declaration (bug 144) R=r OCL=27850 CL=27850
2009-04-21Extend fixedbugs/bug143.go with function return values,David Symonds1-1/+14
as a regression test for the fix made in s2/27706. R=r APPROVED=r DELTA=14 (13 added, 0 deleted, 1 changed) OCL=27707 CL=27709
2009-04-21bug143 is fixedRob Pike1-0/+30
R=dsymonds DELTA=58 (26 added, 32 deleted, 0 changed) OCL=27698 CL=27698
2009-04-16make string take []byte only, so have to use *[10]byte to convertRuss Cox1-2/+2
R=r DELTA=4 (0 added, 0 deleted, 4 changed) OCL=27578 CL=27584
2009-04-15code changes for array conversion.Russ Cox2-2/+2
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
2009-04-10bug142 is fixedRob Pike1-0/+31
R=rsc OCL=27331 CL=27331
2009-03-24^ type(const) now inverts "enough" bitsKen Thompson1-0/+14
^ signed(const) becomes illegal ^ unsigned(const) becomes legal R=r OCL=26697 CL=26697
2009-03-22bug141 is fixedRob Pike1-0/+30
R=ken DELTA=56 (26 added, 30 deleted, 0 changed) OCL=26628 CL=26628
2009-03-20Match gccgo error messages.Ian Lance Taylor1-2/+2
bug090.go:41:6: error: floating point constant truncated to integer bug090.go:32:6: error: floating point constant truncated to integer bug090.go:34:14: error: floating point constant truncated to integer bug090.go:37:5: error: incompatible types in assignment bug090.go:40:5: error: incompatible types in assignment R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=26564 CL=26574
2009-03-12warn -> yyerror in mparith.Russ Cox2-0/+25
close two more bugs. R=ken OCL=26226 CL=26226
2009-03-12make 6g constants behave as ken proposes. (i hope.)Russ Cox2-6/+7
various bug fixes and tests involving constants. test/const1.go is the major new test case. R=ken OCL=26216 CL=26224
2009-03-11bug 125Ken Thompson1-0/+11
R=r OCL=26146 CL=26146
2009-03-11bug 137Ken Thompson1-0/+26
R=r OCL=26142 CL=26142
2009-03-10bug086Ken Thompson1-0/+19
R=r OCL=26090 CL=26090
2009-03-06delete vestigial references to package syscallRob Pike1-2/+2
R=rsc DELTA=8 (0 added, 5 deleted, 3 changed) OCL=25857 CL=25861
2009-03-05bug085 bug129Russ Cox2-0/+38
R=ken OCL=25787 CL=25791
2009-03-03update missed test case to {}Rob Pike1-1/+1
R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=25648 CL=25654
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox11-23/+23
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-25bug130 is fixedRob Pike1-0/+20
R=ken OCL=25448 CL=25448
2009-02-16bug123Russ Cox1-0/+14
R=ken OCL=25075 CL=25075
2009-02-13convert composite literals from { } to ( ).Russ Cox10-22/+22
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-02-11insert type assertions when narrowing.Russ Cox4-9/+6
R=r OCL=24349 CL=24913
2009-02-05bug064Russ Cox1-0/+23
make f(g()) work when g returns multiple args with names different than f expects. func swap(a, b int) (c, d int) { return b, a } swap(swap(1,2)) R=ken OCL=24474 CL=24476
2009-02-03bugs cleanup, including deleting one near-identical duplicate bugRob Pike1-0/+16
R=rsc DELTA=52 (15 added, 37 deleted, 0 changed) OCL=24274 CL=24274
2009-01-30update go code tree to new func rules.Russ Cox4-28/+28
R=r DELTA=367 (111 added, 59 deleted, 197 changed) OCL=23957 CL=23960
2009-01-27bug135 is fixedRob Pike1-0/+18
TBR=ken OCL=23650 CL=23650
2009-01-26bug134Russ Cox1-0/+11
R=ken OCL=23532 CL=23532
2009-01-26bug133Russ Cox4-0/+39
R=ken OCL=23528 CL=23528
2009-01-21Get this bug back to the intended state: bug1.go is making aIan Lance Taylor2-3/+7
reference to a type which should not be visible. The test currently fails with 6g. R=rsc DELTA=7 (4 added, 0 deleted, 3 changed) OCL=23222 CL=23225
2009-01-21With the removal of export, this bug no longer tests anythingIan Lance Taylor1-16/+0
interesting. It was disabled last week anyhow. Let's just delete it. R=r,rsc DELTA=12 (0 added, 12 deleted, 0 changed) OCL=23204 CL=23219
2009-01-20delete exportRuss Cox32-56/+56
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox31-58/+57
R=r OCL=23012 CL=23014
2009-01-16casify, cleanup sysRuss Cox5-6/+6
R=r OCL=22978 CL=22984
2009-01-15convert strconvRuss Cox1-5/+5
R=r DELTA=568 (0 added, 9 deleted, 559 changed) OCL=22898 CL=22901
2009-01-08bug046 and bug080 are fixedRuss Cox2-0/+38
R=r DELTA=72 (30 added, 42 deleted, 0 changed) OCL=22373 CL=22378
2009-01-06new new & makeRuss Cox17-30/+52
R=r OCL=22166 CL=22166
2009-01-06bug020 is fixedRob Pike1-0/+22
R=rsc DELTA=40 (18 added, 22 deleted, 0 changed) OCL=22134 CL=22139
2009-01-05clean up some testsRob Pike5-9/+8
R=rsc DELTA=10 (1 added, 2 deleted, 7 changed) OCL=22033 CL=22033
2008-12-20fix some tests. only 3 remain broken (complit, hilbert, initcomma).Rob Pike4-4/+4
leaving golden.out alone for now. R=ken DELTA=13 (0 added, 0 deleted, 13 changed) OCL=21682 CL=21682
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox18-30/+30
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox5-6/+6
R=r OCL=21563 CL=21571
2008-12-16update tests - 119 is fixedRob Pike1-0/+32
R=gri DELTA=62 (28 added, 34 deleted, 0 changed) OCL=21269 CL=21271
2008-12-12test updateRob Pike1-0/+10
R=rsc DELTA=16 (5 added, 10 deleted, 1 changed) OCL=21085 CL=21087
2008-12-10another bug cleanup.Rob Pike1-0/+58
R=rsc DELTA=117 (54 added, 62 deleted, 1 changed) OCL=20924 CL=20927
2008-12-10update tests: nil is no longer integer-compatibleRob Pike2-0/+23
R=rsc DELTA=56 (17 added, 32 deleted, 7 changed) OCL=20876 CL=20916
2008-12-04bug128 is fixedRob Pike1-0/+23
R=rsc DELTA=43 (19 added, 24 deleted, 0 changed) OCL=20551 CL=20551
2008-11-12This bug has been fixed; moving it from bugs to fixedbugs.Ian Lance Taylor3-0/+27
R=gri DELTA=36 (18 added, 18 deleted, 0 changed) OCL=19059 CL=19133
2008-11-11The scope rules have been changed to say that labels live in aIan Lance Taylor1-0/+12
separate per-function namespace. R=gri DELTA=24 (8 added, 16 deleted, 0 changed) OCL=19006 CL=19057
2008-11-10update testsRob Pike1-0/+15
R=gri DELTA=28 (12 added, 14 deleted, 2 changed) OCL=18923 CL=18923