summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2008-08-11- fix signedness bug in sys.Inf()Rob Pike1-0/+91
- add NaN, Inf printing to fmt - fix a couple of bugs in fmt - add a test for fmt R=ken OCL=14092 CL=14092
2008-08-11add test for maps.Rob Pike1-0/+531
R=gri OCL=14090 CL=14090
2008-08-11code in bug was wrong; correct and improve. works now.Rob Pike1-2/+4
R=gri OCL=14088 CL=14088
2008-08-11- added test case for compiler bug re: exportedRobert Griesemer3-0/+37
variables of function pointer type R=r OCL=14086 CL=14086
2008-08-11update tests.Rob Pike4-11/+4
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-08- removed misleading comment in bug041.goRobert Griesemer3-42/+7
- removed bug042.go - not a bug according to updated spec R=r DELTA=43 (5 added, 36 deleted, 2 changed) OCL=14008 CL=14010
2008-08-08fix a couple of tests that had shell errorsRob Pike2-183/+32
clean up the golden file a bit to have less meaningless content and be more robust to spurious diffs. now there is output only for tests that produce output or failure. R=gri OCL=14005 CL=14005
2008-08-07bug: cannot take len() of a constant stringRobert Griesemer2-0/+24
R=r OCL=13989 CL=13989
2008-08-07fix erroneous code in bugs; reported by iant.Rob Pike4-8/+10
also rob1.go runs, so fix its status. R=gri,iant OCL=13957 CL=13957
2008-08-06returning from a function that specified a result should cause a run-timeRobert Griesemer2-0/+27
failure if no return is actually executed R=r OCL=13915 CL=13915
2008-08-05bug: package name not visibleRobert Griesemer2-4/+35
R=r OCL=13898 CL=13898
2008-08-05workaround for compiler bug: len(a) is zeroRob Pike1-3/+3
TBR=iant OCL=13873 CL=13873
2008-08-04fix bug - need to read final message in daisy chain to avoid hangRob Pike1-0/+1
R=rsc OCL=13840 CL=13840
2008-08-02go method bug is fixed.Rob Pike2-5/+4
R=gri OCL=13766 CL=13766
2008-08-01new bug: go on a method is wrongRob Pike2-0/+26
R=gri OCL=13741 CL=13741
2008-08-01bug: non-exported type is accessible in clientRobert Griesemer4-0/+28
R=r OCL=13736 CL=13738
2008-07-30- filed 2 bugs: unary ^ not implemented, compiler crash with illegal const declRobert Griesemer3-0/+37
R=r OCL=13666 CL=13666
2008-07-30- bug in function invocationRobert Griesemer2-2/+31
R=r OCL=13640 CL=13640
2008-07-29- handling of pointer forward declsRobert Griesemer2-0/+16
- some comments added to bug cases - added notes R=r OCL=13543 CL=13543
2008-07-28update testsRob Pike2-4/+5
R=gri OCL=13526 CL=13526
2008-07-28- parameters must be namedRobert Griesemer1-0/+12
R=r OCL=13520 CL=13520
2008-07-28use real selectRob Pike1-64/+15
R=ken OCL=13519 CL=13519
2008-07-28update testsRob Pike2-12/+1
R=gri OCL=13516 CL=13516
2008-07-28update goldenRob Pike1-9/+4
R=gri OCL=13515 CL=13515
2008-07-27update testsRob Pike5-43/+15
R=ken OCL=13507 CL=13507
2008-07-27really fix it this timeRob Pike1-1/+1
R=ken OCL=13506 CL=13506
2008-07-27code had syntax error masking real bugRob Pike1-1/+2
R=ken OCL=13505 CL=13505
2008-07-25bug: compiler crash on select receive without variable.Rob Pike1-0/+16
R=gri OCL=13470 CL=13470
2008-07-25update testsRob Pike2-4/+16
R=gri OCL=13469 CL=13469
2008-07-24- filed bug: label identifiers should not be allowed to matchRobert Griesemer1-0/+17
other identifiers in the same scope. R=r OCL=13431 CL=13431
2008-07-24- filed bug: label names in different scopes should not conflictRobert Griesemer1-0/+21
R=r OCL=13430 CL=13430
2008-07-23new bug: x, ok = t.m[i] doesn't compileRob Pike1-0/+16
R=ken OCL=13395 CL=13395
2008-07-21compiler crash in string('a', 'b', '\n');Rob Pike1-0/+12
SVN=128253
2008-07-20start of selectKen Thompson1-20/+18
random bugs fixed SVN=128149
2008-07-19add an eval function (written by ken)Rob Pike1-0/+18
SVN=128122
2008-07-19test updateRob Pike3-4/+5
SVN=128120
2008-07-18add doug's power series packageRob Pike2-0/+750
SVN=128063
2008-07-18- added 2 bugs testsRobert Griesemer4-14/+33
SVN=128056
2008-07-17update testsRob Pike3-31/+31
SVN=127826
2008-07-17compiler bug: infinite recursion in subtype()Rob Pike1-0/+22
SVN=127822
2008-07-16strengthen test by checking valuesRob Pike1-10/+15
SVN=127601
2008-07-16add test for non-blocking channel opsRob Pike1-0/+107
SVN=127595
2008-07-15new chan syntaxKen Thompson1-2/+2
SVN=127437
2008-07-15channel tests with new syntaxRob Pike3-65/+65
SVN=127436
2008-07-15add a couple of testsRob Pike3-0/+110
update golden SVN=127428
2008-07-15update golden.outRob Pike1-3/+23
SVN=127240
2008-07-15nested breaks handled wrongRob Pike1-0/+25
SVN=127239
2008-07-15new bugRob Pike1-0/+18
SVN=127232
2008-07-14fix bug namesRob Pike2-1/+12
add a new one: go func() { print "ok\n" } (); SVN=127144
2008-07-14- filed 6g crash bugRobert Griesemer1-0/+27
SVN=127093