summaryrefslogtreecommitdiff
path: root/test/ken
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý43-273/+407
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý41-0/+5408
2011-09-13Imported Upstream version 60Ondřej Surý41-5408/+0
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-1/+1
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-3/+3
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-97/+0
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý10-102/+99
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý5-7/+478
2010-06-23gc: fix crash for nested complex divisionRuss Cox1-0/+6
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043
2010-06-21reflect: add Type.Bits method, add tags to prohibit conversionsRuss Cox1-3/+0
gob: substitute slice for map R=r CC=golang-dev http://codereview.appspot.com/1699045
2010-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox1-3/+3
R=gri CC=golang-dev http://codereview.appspot.com/1620042
2010-03-30single argument panicRuss Cox3-306/+301
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike11-1287/+2007
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
2010-03-091. decommit complex(float) conversionKen Thompson3-6/+58
2. add complex algorithm for map/chan 3. test for use of complex in array, slice, field, chan, map, field, pointer. R=rsc CC=golang-dev http://codereview.appspot.com/384041
2010-03-09identical complex implementationKen Thompson5-11/+11
for 6g and 8g. can also be used for 5g. 5g is still a stub. R=rsc CC=golang-dev http://codereview.appspot.com/362041
2010-03-056g complex type usableKen Thompson3-3/+83
8g and 5g have stubs to ignore complex R=rsc CC=golang-dev http://codereview.appspot.com/257042
2010-03-02test: fix 386 build (missing complex)Russ Cox3-2/+4
R=ken2 CC=golang-dev http://codereview.appspot.com/223106
2010-03-02more on type complex.Ken Thompson3-0/+208
getting close. R=rsc CC=golang-dev http://codereview.appspot.com/224105
2010-01-19Add explicit locking.Ian Lance Taylor1-7/+29
Since gcco runs goroutines in independent threads, it needs locking for the global variables. This shows up when I use ordinary increments rather than locked increments for var++. R=ken2, ken3 CC=golang-dev http://codereview.appspot.com/190074
2009-12-10trailing comma's are not accepted with current syntaxRobert Griesemer1-2/+1
R=rsc, ken2 http://codereview.appspot.com/174047
2009-12-10make test/ken safe for optional semisRobert Griesemer32-394/+188
R=rsc, ken2, ken3 http://codereview.appspot.com/174042
2009-11-20x[y:] for stringsRuss Cox1-1/+1
R=ken2 http://codereview.appspot.com/157114
2009-11-20x[lo:] - gc and runtime.Russ Cox2-0/+16
* add runtime sliceslice1 for x[lo:] * remove runtime arraytoslice, rewriting &arr into arr[0:len(arr)]. * port cgen_inline into 8g, 5g. * use native memmove in maps R=ken2 http://codereview.appspot.com/157106
2009-10-13write stack traces and panics to stderrRob Pike1-0/+2
R=rsc DELTA=31 (5 added, 3 deleted, 23 changed) OCL=35700 CL=35700
2009-10-09time tests; sort -nr times.out | sed 10q is illuminating.Russ Cox2-2/+2
cut the slowest tests down from a few seconds to under half a second. R=r DELTA=21 (6 added, 1 deleted, 14 changed) OCL=35509 CL=35519
2009-09-28disallow interface { x, y() }Russ Cox2-7/+8
R=ken OCL=35042 CL=35044
2009-09-14fix "declared and not used" in tests;Russ Cox3-14/+16
also template/template.go, missed last time. R=r DELTA=116 (61 added, 10 deleted, 45 changed) OCL=34620 CL=34622
2009-09-08compound literal testKen Thompson1-0/+171
R=rsc OCL=34453 CL=34455
2009-08-28arraytoslice and some cleanupKen Thompson1-1/+6
R=rsc OCL=34058 CL=34058
2009-08-28sliceslice inlineKen Thompson1-0/+129
R=rsc OCL=34041 CL=34041
2009-08-27inline slicearrayKen Thompson1-0/+127
R=rsc OCL=33974 CL=33974
2009-08-21Enable these tests. Fix divconst.go and modconst.go toIan Lance Taylor2-4/+0
compile with the current compiler. Adjust expected error message in method1.go to match 6g output. R=rsc DELTA=9 (2 added, 5 deleted, 2 changed) OCL=33674 CL=33682
2009-08-17fix up some irregular indentationRob Pike3-4/+2
R=rsc OCL=33382 CL=33391
2009-08-12delete forward type declarationsRuss Cox1-6/+0
R=r DELTA=163 (1 added, 149 deleted, 13 changed) OCL=33106 CL=33111
2009-08-12convert non-pkg go files to whole-package compilation.Russ Cox4-11/+0
mostly removing forward declarations. R=r DELTA=138 (2 added, 127 deleted, 9 changed) OCL=33068 CL=33099
2009-08-108-bit div and modRuss Cox2-0/+220
R=ken OCL=32975 CL=32975
2009-08-08another plateau - almost doneKen Thompson2-20/+717
only need to fix up certain denominators R=rsc OCL=32928 CL=32928
2009-08-06divide by a constant power of 2Ken Thompson1-0/+45
R=rsc OCL=32858 CL=32858
2009-06-04string([]int) is now implementedRob Pike1-5/+15
R=rsc DELTA=18 (10 added, 2 deleted, 6 changed) OCL=29909 CL=29909
2009-05-08move things out of sys into os and runtimeRuss Cox2-10/+14
R=r OCL=28569 CL=28573
2009-05-06added a distinguishing string to the error printsKen Thompson1-31/+58
R=r OCL=28321 CL=28357
2009-05-05signs on div and modKen Thompson1-0/+184
R=r OCL=28319 CL=28319
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-5/+5
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-02-11insert type assertions when narrowing.Russ Cox3-16/+16
R=r OCL=24349 CL=24913
2009-01-30update go code tree to new func rules.Russ Cox1-2/+2
R=r DELTA=367 (111 added, 59 deleted, 197 changed) OCL=23957 CL=23960
2009-01-26removed a:b in range syntaxKen Thompson2-4/+60
added another channel test R=r OCL=23488 CL=23488
2009-01-20delete exportRuss Cox9-37/+37
TBR=r OCL=23121 CL=23127
2009-01-16convert tests; nothing interesting.Russ Cox10-45/+45
R=r OCL=23012 CL=23014
2009-01-16casify, cleanup sysRuss Cox1-7/+7
R=r OCL=22978 CL=22984