summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2008-09-19Check for specific error messages in the testsuite. ThisIan Lance Taylor6-13/+82
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-19add gobuild.Russ Cox1-0/+207
use gobuild-generated Makefile for math and os. other makefile tweaks. move math/main.go to test/math.go R=r OCL=15529 CL=15537
2008-09-18- added item to TODO list in go_specRobert Griesemer1-0/+14
- filed a bug R=r OCL=15517 CL=15517
2008-09-17fix printing of -(1<<63)Russ Cox2-26/+16
R=r OCL=15441 CL=15445
2008-09-17add network listening & testsRuss Cox2-0/+195
R=r,presotto OCL=15410 CL=15440
2008-09-16update tests to new communications syntaxRob Pike6-80/+59
powser1.go has not been tested - waiting for compiler to catch up R=ken OCL=15415 CL=15415
2008-09-16fix / work around bugs in bufio testRuss Cox1-1/+1
R=r DELTA=11 (8 added, 0 deleted, 3 changed) OCL=15405 CL=15405
2008-09-16fix some broken tests (tests themselves were wrong)Rob Pike3-29/+89
R=gri,rsc OCL=15310 CL=15402
2008-09-16var bug is fixedRob Pike1-0/+0
R=rsc OCL=15400 CL=15400
2008-09-15update bugsRob Pike4-123/+4
delete bug100.go since the compiler is doing what we agreed. R=gri OCL=15367 CL=15367
2008-09-12test program to generate multiples of a set of factorsRobert Griesemer1-0/+61
(as written, factors are 2, 3, and 5) R=r OCL=15286 CL=15286
2008-09-12buffered input & outputRuss Cox1-0/+377
R=r DELTA=812 (803 added, 0 deleted, 9 changed) OCL=15225 CL=15280
2008-09-12array literals not initializedRuss Cox1-0/+15
R=r DELTA=11 (11 added, 0 deleted, 0 changed) OCL=15222 CL=15276
2008-09-12rudimentary string utilities.Russ Cox1-0/+108
R=r DELTA=314 (306 added, 8 deleted, 0 changed) OCL=15074 CL=15263
2008-09-12out of bounds bugRuss Cox1-0/+13
R=r DELTA=9 (9 added, 0 deleted, 0 changed) OCL=15223 CL=15223
2008-09-12bug 100 - spurious return warningsRuss Cox1-0/+27
R=r OCL=15221 CL=15221
2008-09-11new bugRuss Cox1-0/+38
R=r DELTA=34 (34 added, 0 deleted, 0 changed) OCL=15178 CL=15181
2008-09-11- map composites should be of correct map type (instead of pointer type)Robert Griesemer2-0/+28
R=r OCL=15180 CL=15180
2008-09-11- 2 bugs with composite literalsRobert Griesemer3-0/+81
R=r OCL=15179 CL=15179
2008-09-11- added 2 bugsRobert Griesemer4-4/+93
- moved bug 060 back into bugs R=r OCL=15175 CL=15175
2008-09-11fixes for funcs without returnsRob Pike4-1/+5
R=ken OCL=15170 CL=15170
2008-09-10- added bug093.goRobert Griesemer2-2/+82
R=r DELTA=80 (78 added, 2 deleted, 0 changed) OCL=15094 CL=15101
2008-09-09- added convenience wrappers for sortRobert Griesemer1-0/+50
(work now with Ken's latest compiler fix) - exoanded test cases accordingly - fixed a type in the spec (thx r) R=r DELTA=65 (62 added, 2 deleted, 1 changed) OCL=15050 CL=15050
2008-09-09update goldenRob Pike1-4/+3
R=gri OCL=15014 CL=15014
2008-09-08fixed sorting.go to use proper composite literal {}'s instead ofRobert Griesemer1-3/+3
"conversion" R=r OCL=14976 CL=14976
2008-09-08- added sort package and test caseRobert Griesemer1-0/+62
R=r OCL=14975 CL=14975
2008-09-08limit tests to 4GB of memory.Russ Cox1-0/+4
3G works on thresher, 2G does not R=r OCL=14956 CL=14958
2008-09-05T{} syntax for constructorsKen Thompson6-20/+20
T(expression) for conversion FUNC keyword no longer a type R=r OCL=14887 CL=14887
2008-09-04update testsRob Pike4-11/+13
R=gri OCL=14847 CL=14847
2008-09-04resolve that all unnecessary backslashes are rejected.Rob Pike2-6/+7
bug068 is not a bug. R=gri OCL=14838 CL=14838
2008-09-04extend composite literal test.Rob Pike3-6/+20
update tests. update golden.out R=gri OCL=14816 CL=14816
2008-09-03fix bug in stack overflow check.Rob Pike2-4/+0
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 Pike4-18/+46
add test for composite literals R=gri OCL=14766 CL=14766
2008-09-03update testsRob Pike6-26/+37
add commands to two new ken tests R=gri OCL=14751 CL=14751
2008-09-02in golden.out, replace $RUNFILE with '$RUNFILE'Russ Cox2-2/+4
and replace pid with PID R=r DELTA=4 (2 added, 0 deleted, 2 changed) OCL=14727 CL=14727
2008-09-02vector cleanup:Rob Pike1-1/+1
- change Delete to Remove - return deleted element in Remove - remove range checking (runtime does this for you) R=gri OCL=14714 CL=14714
2008-09-02update tests.Rob Pike3-22/+10
fix bug092, which was incorrectly specified R=gri OCL=14713 CL=14713
2008-08-29- declaring large fixed arrays is causing runtime crashRobert Griesemer2-0/+23
R=ken OCL=14658 CL=14660
2008-08-29- removed need for int() conversion now that x << s has correct typeRobert Griesemer2-9/+1
- updated golden.out R=r DELTA=9 (0 added, 8 deleted, 1 changed) OCL=14657 CL=14657
2008-08-29fix type of (1<<x)Ken Thompson2-0/+287
R=r OCL=14656 CL=14656
2008-08-29- updated test cases to latest compiler changesRobert Griesemer6-112/+138
R=r DELTA=185 (59 added, 33 deleted, 93 changed) OCL=14655 CL=14655
2008-08-29- updated and cleaned up vector.go to use new array instructionsRobert Griesemer1-0/+61
- added initial test cases (needs to be expanded) R=r DELTA=135 (84 added, 30 deleted, 21 changed) OCL=14654 CL=14654
2008-08-27arraysKen Thompson1-3/+3
R=r OCL=14603 CL=14603
2008-08-20delete redundant bug.Rob Pike4-31/+29
fix typo. add scoping bug. R=gri OCL=14349 CL=14349
2008-08-20bugs related to constat typesRobert Griesemer2-4/+6
R=r DELTA=10 (6 added, 4 deleted, 0 changed) OCL=14348 CL=14348
2008-08-13add test for constantsRob Pike3-0/+160
add bug in constant evaluation (erroneously allowing assignment of float to int) update golden R=gri OCL=14153 CL=14153
2008-08-12update bugsRob Pike3-8/+0
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 Pike6-5/+40
R=gri OCL=14137 CL=14137
2008-08-12fixed bugs in const/caseKen Thompson1-37/+35
R=r DELTA=138 (75 added, 12 deleted, 51 changed) OCL=14129 CL=14131
2008-08-11fix bug depot:Rob Pike63-314/+310
1) fix print statements, panic statements (parentheses required) 2) len is now allowed as a var name (bug053) R=gri OCL=14106 CL=14106