aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/os/exec
AgeCommit message (Collapse)Author
2012-01-30build: remove Make.pkg, Make.toolRuss Cox
Consequently, remove many package Makefiles, and shorten the few that remain. gomake becomes 'go tool make'. Turn off test phases of run.bash that do not work, flagged with $BROKEN. Future CLs will restore these, but this seemed like a big enough CL already. R=golang-dev, r CC=golang-dev https://golang.org/cl/5601057
2012-01-19os/exec: trivial allocation removal in LookPathGustavo Niemeyer
R=golang-dev, bsiegert, r CC=golang-dev https://golang.org/cl/5549043
2012-01-17pkg: add missing godoc comments to windows versionsAlex Brainman
Mostly copied comments from unix files. R=rsc CC=golang-dev https://golang.org/cl/5533057
2011-12-21exec: disable the ExtraFiles test on darwinBrad Fitzpatrick
Still a mystery. New issue 2603 filed. R=golang-dev, dsymonds, iant CC=golang-dev https://golang.org/cl/5503063
2011-12-21os/exec: put the print where it will helpRuss Cox
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5501058
2011-12-21os/exec: dump lsof on failureRuss Cox
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5504063
2011-12-22os/exec: enable inherited file descriptor testAndrew Gerrand
Fixes #2596. R=golang-dev CC=golang-dev https://golang.org/cl/5498061
2011-12-20os: don't trust O_CLOEXEC on OS XBrad Fitzpatrick
OS X 10.6 doesn't do O_CLOEXEC. OS X 10.7 does. For now, always fall back to using syscall.CloseOnExec on darwin. This can removed when 10.6 is old news, or if we find a way to cheaply & reliably detect 10.6 vs 10.7 at runtime. Fixes #2587 R=golang-dev, rsc, iant CC=golang-dev https://golang.org/cl/5500053
2011-12-19exec: disable new test to fix buildIan Lance Taylor
TBR=bradfitz CC=golang-dev https://golang.org/cl/5494075
2011-12-19net, syscall, os: set CLOEXEC flag on epoll/kqueue descriptorIan Lance Taylor
Enable new test in os. R=dave, iant, rsc CC=golang-dev https://golang.org/cl/5494061
2011-12-19exec: add test to verify net package's epoll fd doesn't go to childBrad Fitzpatrick
R=rsc CC=golang-dev https://golang.org/cl/5490075
2011-12-18os: Add NetBSD support for recent signal changes.Christopher Nielsen
Add NetBSD to mksignals.sh and generate files. While we're here, also add netbsd to the +build list where appropriate. R=golang-dev, jsing CC=golang-dev https://golang.org/cl/5492064
2011-12-15os/exec: fix -test.run argument for new 'go test'Russ Cox
In 'go test' I deleted the leading package. prefix from all the test names, since it contained no actual information. Adjust the -test.run argument accordingly. This will still work with the current gotest too, since the argument is an unanchored pattern. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5491058
2011-12-12os: fix Plan 9 build for new FileInfo APIAnthony Martin
R=lucio.dere, rsc CC=golang-dev https://golang.org/cl/5440073
2011-12-12build: Changes to the build infrastructure for NetBSD.Christopher Nielsen
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5476048
2011-12-02os/exec: make LookPath always search the current directory under Windows.Benny Siegert
cmd.exe implicitly looks in "." before consulting PATH. LookPath should match this behavior. R=alex.brainman, rsc CC=golang-dev https://golang.org/cl/5434093
2011-11-30os: new FileInfo, FileMode types + update treeRuss Cox
R=golang-dev, r, r, gri, bradfitz, iant, iant, nigeltao, n13m3y3r CC=golang-dev https://golang.org/cl/5416060
2011-11-09os/exec: Fix documentation references to os.DevNullScott Lawrence
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5372049
2011-11-08renaming_1: hand-edited files for go 1 renamingRob Pike
This contains the files that required handiwork, mostly Makefiles with updated TARGs, plus the two packages with modified package names. html/template/doc.go needs a separate edit pass. test/fixedbugs/bug358.go is not legal go so gofix fails on it. R=rsc CC=golang-dev https://golang.org/cl/5340050
2011-11-03os,text,unicode: renamingsRob Pike
This is Go 1 package renaming CL #4. This one merely moves the source; the import strings will be changed after the next weekly release. This one moves pieces into os, text, and unicode. exec -> os/exec scanner -> text/scanner tabwriter -> text/tabwriter template -> text/template template/parse -> text/template/parse utf16 -> unicode/utf16 utf8 -> unicode/utf8 This should be the last of the source-rearranging CLs. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5331066