summaryrefslogtreecommitdiff
path: root/test/fixedbugs
AgeCommit message (Collapse)AuthorFilesLines
2008-11-07Don't use a type guard with a type which is not an interface.Ian Lance Taylor1-1/+1
R=r,gri DELTA=2 (0 added, 0 deleted, 2 changed) OCL=18781 CL=18785
2008-11-03fixed testsRuss Cox2-0/+71
R=r DELTA=124 (62 added, 62 deleted, 0 changed) OCL=18389 CL=18394
2008-10-30update testsRob Pike3-0/+77
R=rsc DELTA=159 (65 added, 84 deleted, 10 changed) OCL=18149 CL=18151
2008-10-29more simple test fixesRuss Cox1-1/+1
R=r OCL=18035 CL=18035
2008-10-17update fixed bugs (and delete an irrelevant one)Rob Pike7-0/+166
R=rsc DELTA=328 (158 added, 170 deleted, 0 changed) OCL=17353 CL=17359
2008-10-15bug is fixedRob Pike1-0/+19
R=ken OCL=17208 CL=17208
2008-10-14update bug listRob Pike5-0/+124
R=ken OCL=17169 CL=17169
2008-10-07remove uses of *T as an implicit forward declaration of TRuss Cox1-0/+4
R=gri,r OCL=16648 CL=16652
2008-10-07update code to follow new semicolon rules:Russ Cox2-7/+7
* 1. all statements and declarations are terminated by semicolons * 2. semicolons can be omitted at top level. * 3. semicolons can be omitted before and after the closing ) or } * on a list of statements or declarations. /home/rsc/bin/addsemi and then diff+tweak. R=r,gri OCL=16620 CL=16643
2008-10-06change type names to go live at the name, so thatRuss Cox1-0/+31
type T struct { next *T } and type T *struct { next T } are valid without needing forward declarations. add "type T struct" syntax for forward struct declarations. add "type T interface" syntax, but commented out (need to fix semicolons first) R=ken DELTA=452 (259 added, 115 deleted, 78 changed) OCL=16580 CL=16584
2008-10-06Change old-style export declaration to new style export ofIan Lance Taylor1-3/+1
type definition. R=r DELTA=3 (0 added, 2 deleted, 1 changed) OCL=16537 CL=16545
2008-10-05bug026 and bug060 are fixed. update.Rob Pike2-0/+45
R=rsc DELTA=87 (37 added, 50 deleted, 0 changed) OCL=16498 CL=16507
2008-10-01With the cleanup of method types, this test case is nowIan Lance Taylor1-15/+0
invalid. The receiver type is not permitted to be a pointer type. Since 6g currently accepts it, this moves the test case back to the bugs directory. R=gri DELTA=22 (11 added, 11 deleted, 0 changed) OCL=16284 CL=16336
2008-09-22re-fix bug067, update golden.outRuss Cox1-1/+5
R=r DELTA=9 (4 added, 3 deleted, 2 changed) OCL=15655 CL=15655
2008-09-22compiler changes:Russ Cox3-0/+38
export.c: - only expose explicitly exported types to importer - fix behind your back go.h: - add deep() prototype (fixes 64-bit linux crash on time.go) go.y: - add a new syntax error case walk.c: - allow a,b = f() where f is func ptr (fixes bug088) R=ken OCL=15617 CL=15630
2008-09-20fix some testsRob Pike1-0/+14
R=ken OCL=15598 CL=15598
2008-09-19Check for specific error messages in the testsuite. ThisIan Lance Taylor2-5/+5
permits testing that the compiler emits error messages for specific lines that match egrep regexps. The desired error messages are expressed using comments of the form // ERROR "regexp" R=r DELTA=90 (73 added, 8 deleted, 9 changed) OCL=15513 CL=15566
2008-09-16fix some broken tests (tests themselves were wrong)Rob Pike1-0/+16
R=gri,rsc OCL=15310 CL=15402
2008-09-16var bug is fixedRob Pike1-0/+15
R=rsc OCL=15400 CL=15400
2008-09-11- added 2 bugsRobert Griesemer1-17/+0
- moved bug 060 back into bugs R=r OCL=15175 CL=15175
2008-09-11fixes for funcs without returnsRob Pike2-0/+24
R=ken OCL=15170 CL=15170
2008-09-05T{} syntax for constructorsKen Thompson2-3/+3
T(expression) for conversion FUNC keyword no longer a type R=r OCL=14887 CL=14887
2008-09-04update testsRob Pike3-0/+42
R=gri OCL=14847 CL=14847
2008-09-04resolve that all unnecessary backslashes are rejected.Rob Pike1-0/+19
bug068 is not a bug. R=gri OCL=14838 CL=14838
2008-09-04extend composite literal test.Rob Pike1-0/+14
update tests. update golden.out R=gri OCL=14816 CL=14816
2008-09-03fix bug in stack overflow check.Rob Pike1-0/+19
if stack is in low memory and frame size is huge, test could wrap around! fix by omitting test altogether if we know frame is big. R=gri OCL=14782 CL=14782
2008-09-03update bugsRob Pike2-0/+33
add test for composite literals R=gri OCL=14766 CL=14766
2008-09-03update testsRob Pike3-0/+94
add commands to two new ken tests R=gri OCL=14751 CL=14751
2008-09-02update tests.Rob Pike2-0/+50
fix bug092, which was incorrectly specified R=gri OCL=14713 CL=14713
2008-08-29- updated test cases to latest compiler changesRobert Griesemer3-23/+17
R=r DELTA=185 (59 added, 33 deleted, 93 changed) OCL=14655 CL=14655
2008-08-12update bugsRob Pike2-0/+65
exploit the compiler now supporting i2s and i2i and clean up some code fix up some panics and prints R=gri OCL=14141 CL=14141
2008-08-12update testsRob Pike2-0/+33
R=gri OCL=14137 CL=14137
2008-08-11fix bug depot:Rob Pike7-9/+20
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106
2008-08-11code in bug was wrong; correct and improve. works now.Rob Pike1-2/+4
R=gri OCL=14088 CL=14088
2008-08-11update tests.Rob Pike3-0/+46
fixedbugs/bug012.go is broken again but i left it where it is, with the golden file not reflecting the breakage so it will be noticed R=ken,gri OCL=14073 CL=14073
2008-08-07fix erroneous code in bugs; reported by iant.Rob Pike1-1/+1
also rob1.go runs, so fix its status. R=gri,iant OCL=13957 CL=13957
2008-08-02go method bug is fixed.Rob Pike1-0/+23
R=gri OCL=13766 CL=13766
2008-07-28update testsRob Pike1-0/+24
R=gri OCL=13526 CL=13526
2008-07-28update testsRob Pike1-0/+24
R=gri OCL=13516 CL=13516
2008-07-27update testsRob Pike3-0/+44
R=ken OCL=13507 CL=13507
2008-07-25update testsRob Pike1-0/+19
R=gri OCL=13469 CL=13469
2008-07-19test updateRob Pike2-0/+38
SVN=128120
2008-07-18- added 2 bugs testsRobert Griesemer1-0/+22
SVN=128056
2008-07-17update testsRob Pike2-0/+39
SVN=127826
2008-07-07fixed three-way declRob Pike1-0/+11
SVN=126254
2008-07-07bug updateRob Pike2-0/+37
SVN=126121
2008-07-07test cleanupRob Pike8-0/+144
SVN=126120
2008-07-03one bug fixedRob Pike1-0/+21
SVN=126006
2008-06-30add test that was mistakenly not checked in, now fixedRob Pike1-0/+34
SVN=125408
2008-06-27test wasn't being run. it works fine.Rob Pike1-0/+1
SVN=125179