- 04 Apr, 2011 5 commits
-
-
Albert Strasheim authored
Fixes #1637. R=rsc, rh, msolo CC=golang-dev https://golang.org/cl/4317049
-
Mikio Hara authored
R=rsc CC=golang-dev https://golang.org/cl/4331050
-
Brad Fitzpatrick authored
Enables the use of https servers in tests. R=agl, rsc, agl1 CC=golang-dev https://golang.org/cl/4284063
-
Brad Fitzpatrick authored
Ideally we'd compile all example files during the build, though. Fixes #1660 R=r CC=golang-dev https://golang.org/cl/4358049
-
Andrew Gerrand authored
Fixes #1651. R=rsc CC=golang-dev https://golang.org/cl/4300054
-
- 03 Apr, 2011 3 commits
-
-
Andrey Mirtchovski authored
R=paulzhol, ality, r, fhs CC=golang-dev https://golang.org/cl/4316054
-
Andrey Mirtchovski authored
these were needed by packages in crypto/ and by io/ioutil R=golang-dev, r CC=golang-dev https://golang.org/cl/4350047
-
Ian Lance Taylor authored
R=r, peterGo CC=golang-dev https://golang.org/cl/4344053
-
- 02 Apr, 2011 6 commits
-
-
Yuval Pavel Zholkover authored
R=rsc, ality, r, r2 CC=golang-dev https://golang.org/cl/4149046
-
Yuval Pavel Zholkover authored
CC=golang-dev https://golang.org/cl/3816043
-
Robert Griesemer authored
R=r, r2, rsc1 CC=golang-dev https://golang.org/cl/4343045
-
Evan Shaw authored
Forgot this one in the previous CL R=rsc, r CC=golang-dev https://golang.org/cl/4345043
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/4316051
-
Evan Shaw authored
R=rsc CC=golang-dev https://golang.org/cl/4350043
-
- 01 Apr, 2011 3 commits
-
-
Rob Pike authored
Fixes #1610. R=rsc CC=golang-dev https://golang.org/cl/4355042
-
Anthony Starks authored
R=golang-dev, adg, peterGo CC=golang-dev https://golang.org/cl/4274072
-
Alex Brainman authored
R=golang-dev, rsc1 CC=golang-dev https://golang.org/cl/4347041
-
- 31 Mar, 2011 10 commits
-
-
Alex Brainman authored
R=peterGo, rsc, Joe Poirier CC=golang-dev https://golang.org/cl/4280087
-
Ian Lance Taylor authored
Since Go code can deadlock, this lets a testsuite driver set a time limit for the test to run. This is simple but imperfect, in that it only catches deadlocks in Go code, not in the runtime scheduler. R=r, rsc, iant2 CC=golang-dev https://golang.org/cl/4326048
-
Rob Pike authored
Also fix a bug: precision was in terms of bytes; should be runes. Fixes #1652. R=rsc, bradfitzgo, r2, bradfitzwork CC=golang-dev https://golang.org/cl/4280086
-
Rob Pike authored
It was speculation. Also replace one silly word with an English replacement. R=golang-dev, bradfitzgo CC=golang-dev https://golang.org/cl/4339041
-
Brad Fitzpatrick authored
R=rsc CC=golang-dev https://golang.org/cl/4280079
-
Alexey Borzenkov authored
Fix resolv_windows.go to support recent DNS-lookup changes R=brainman, rsc1, rsc CC=golang-dev https://golang.org/cl/4300045
-
Rob Pike authored
doc.go contains the details. The short story: - command line is passed to the binary - a new flag, -file, is needed to name files - known flags have the "test." prefix added for convenience. - gotest-specific flags are trimmed from the command line. The effect should be that most existing uses are unaffected, the ability to name files is still present, and it's nicer to use. The downside is a lot more code in gotest. Also allow a test to be called just Test. R=rsc, niemeyer, rog, r2 CC=golang-dev https://golang.org/cl/4307049
-
Russ Cox authored
TBR=r CC=golang-dev https://golang.org/cl/4333048
-
Russ Cox authored
R=r, r2 CC=golang-dev https://golang.org/cl/4307047
-
Russ Cox authored
This will make the fmt code easier to gofix when the new reflect interface is ready. R=r CC=golang-dev https://golang.org/cl/4324043
-
- 30 Mar, 2011 8 commits
-
-
Robert Griesemer authored
also: minor fix to parser Note: gotest won't run the gotype test yet until it permits TestXXX functions where XXX is empty. R=r CC=golang-dev https://golang.org/cl/4300053
-
Robert Griesemer authored
- don't consume '\n' as part of line comment (otherwise grammars where '\n' are tokens won't see them after a line comment) - permit line comments to end in EOF R=r CC=golang-dev https://golang.org/cl/4277089
-
Ian Lance Taylor authored
This lets the test work for gccgo on other architectures. R=r, rsc1 CC=golang-dev https://golang.org/cl/4326044
-
Robert Griesemer authored
R=r, rsc1, iant2 CC=golang-dev https://golang.org/cl/4329044
-
Roger Peppe authored
R=gri CC=golang-dev https://golang.org/cl/4332045
-
Andrew Gerrand authored
R=gri CC=golang-dev https://golang.org/cl/4277087
-
Robert Griesemer authored
As a special case, multi-line raw strings (i.e., strings in `` quotes) were not indented if they were the only token on a line. This heuristic was meant to improve formatting for multi-line raw strings where sub- sequent lines are not indented at the level of the surrounding code. Multiple people have complained about this. Removing the heuristic again because it makes the formatting more regular, easier to under- stand, and simplifies the implementation. - manual changes to ebnf/ebnf_test.go for readability - gofmt -w src misc Fixes #1643. R=r, rsc CC=golang-dev https://golang.org/cl/4307045
-
Andrew Gerrand authored
I'm in two minds as to whether this should be a function of gotest. Tests that can flake out like this should be rare enough that we needn't add more mechanism. R=r CC=golang-dev https://golang.org/cl/4335042
-
- 29 Mar, 2011 5 commits
-
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/4271086
-
Ian Lance Taylor authored
Failing at compile time requires that for each conversion between two interface types the compiler compare the sets of unexported methods to see if they come from different packages. Since this test will fail approximately never on real code, and since it can't catch all cases of the problem, I don't think it's worth testing in the compiler. This CL changes this test to look for a run-time panic rather than a compile-time error. R=gri, rsc1, iant2, rsc CC=golang-dev https://golang.org/cl/4332041
-
Adam Langley authored
R=bradfitzgo, rsc1, bradfitzwork CC=golang-dev https://golang.org/cl/4277085
-
Rob Pike authored
R=rsc, agl, agl1 CC=golang-dev https://golang.org/cl/4337041
-
Rob Pike authored
Update the make sequence: gotest must now be installed after the packages. R=rsc CC=golang-dev https://golang.org/cl/4323044
-