aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/path/filepath/path_test.go
AgeCommit message (Collapse)Author
2011-04-04os: New Open API.Rob Pike
We replace the current Open with: OpenFile(name, flag, perm) // same as old Open Open(name) // same as old Open(name, O_RDONLY, 0) Create(name) // same as old Open(name, O_RDWR|O_TRUNC|O_CREAT, 0666) This CL includes a gofix module and full code updates: all.bash passes. (There may be a few comments I missed.) The interesting packages are: gofix os Everything else is automatically generated except for hand tweaks to: src/pkg/io/ioutil/ioutil.go src/pkg/io/ioutil/tempfile.go src/pkg/crypto/tls/generate_cert.go src/cmd/goyacc/goyacc.go src/cmd/goyacc/units.y R=golang-dev, bradfitzwork, rsc, r2 CC=golang-dev https://golang.org/cl/4357052
2011-04-04filepath: new Abs functionGustavo Niemeyer
R=golang-dev, rsc1, peterGo, bsiegert, r, mattn CC=golang-dev https://golang.org/cl/4271057
2011-03-21path/filepath: fix TestEvalSymlinks when run under symlinked GOROOTAndrew Gerrand
Fixes #1622. R=rsc, bradfitzgo CC=golang-dev https://golang.org/cl/4287063
2011-03-18filepath: do not run TestEvalSymlinks on WindowsAlex Brainman
R=golang-dev, rsc1 CC=adg, golang-dev https://golang.org/cl/4274069
2011-03-17path/filepath: add EvalSymlinks functionAndrew Gerrand
R=rsc, niemeyer, r2, rog, iant2, r CC=golang-dev https://golang.org/cl/4235060
2011-03-17path: work for windows.Yasuhiro Matsumoto
R=brainman, rsc, rsc1 CC=golang-dev https://golang.org/cl/4249064
2011-03-07path/filepath: disable test on windows to fix buildAlex Brainman
R=golang-dev, rsc1 CC=golang-dev https://golang.org/cl/4235054
2011-03-06path/filepath: new OS-specific path supportGustavo Niemeyer
The path package now contains only functions which deal with slashed paths, sensible for any OS when dealing with network paths or URLs. OS-specific functionality has been moved into the new path/filepath package. This also includes fixes for godoc, goinstall and other packages which were mixing slashed and OS-specific paths. R=rsc, gri, mattn, brainman CC=golang-dev https://golang.org/cl/4252044