summaryrefslogtreecommitdiff
path: root/src/pkg/path/path_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+196
2011-09-13Imported Upstream version 60Ondřej Surý1-196/+0
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-159/+0
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-4/+14
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-70/+106
2010-06-09add path.Base, analogous to Unix basenameRob Pike1-0/+23
R=rsc CC=golang-dev http://codereview.appspot.com/1633042
2010-04-09rename os.Dir to os.FileInfoRob Pike1-4/+4
R=rsc CC=golang-dev http://codereview.appspot.com/902042
2010-02-05path: make Join variadicStephen Weinberg1-10/+26
R=rsc, r CC=golang-dev http://codereview.appspot.com/198049 Committer: Russ Cox <rsc@golang.org>
2009-12-151) Change default gofmt default settings forRobert Griesemer1-37/+37
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049
2009-11-13path.TestWalk: disable error case if rootRuss Cox1-23/+25
(chmod 0 doesn't cause errors for root) Fixes issue 22. R=gri http://codereview.appspot.com/152120
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-16/+16
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-3/+1
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-10-27files that are okay from the last gofmt roundRuss Cox1-12/+10
R=gri http://go/go-review/1015011
2009-10-19directory tree walk w/ visitor per rsc's suggestionRobert Griesemer1-0/+139
R=rsc,r DELTA=193 (191 added, 0 deleted, 2 changed) OCL=35849 CL=35877
2009-10-08more lgtm files from gofmtRuss Cox1-10/+9
R=gri OCL=35485 CL=35488
2009-09-15more "declared and not used".Russ Cox1-4/+4
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638
2009-08-12convert non-low-level non-google pkg codeRuss Cox1-2/+0
to whole-package compilation. R=r OCL=33070 CL=33101
2009-06-09mv src/lib to src/pkgRob Pike1-0/+136
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102