summaryrefslogtreecommitdiff
path: root/test/sigchld.go
Commit message (Collapse)AuthorAgeFilesLines
* test: skip SIGCHLD test on Plan 9David du Colombier2014-01-291-1/+1
| | | | | | | LGTM=bradfitz R=jas, mikioh.mikioh, bradfitz CC=golang-codereviews https://codereview.appspot.com/51200045
* undo CL 10017045 / 6ec8c49421a0Brad Fitzpatrick2013-06-041-1/+1
| | | | | | | | | | | | | | | | | | It was never tested and also breaks Windows. run.go doesn't yet support the proper !windows,!plan9 syntax. ??? original CL description test: do not run SIGCHLD test on Plan 9 R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/10017045 ??? R=golang-dev, dave CC=golang-dev https://codereview.appspot.com/10024044
* test: do not run SIGCHLD test on Plan 9Anthony Martin2013-06-041-1/+1
| | | | | | R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/10017045
* test: add support for build tags.R?my Oudompheng2013-01-281-5/+2
| | | | | | | | | This enables a few tests that were only executed unconditionnally. R=rsc, minux.ma, bradfitz CC=golang-dev https://codereview.appspot.com/7103051
* test: expand run.go's errorcheck, make clear which bugs runRuss Cox2012-09-231-0/+3
| | | | | | | | | | | | | | | | Today, if run.go doesn't understand a test header line it just ignores the test, making it too easy to write or edit tests that are not actually being run. - expand errorcheck to accept flags, so that bounds.go and escape*.go can run. - create a whitelist of skippable tests in run.go; skipping others is an error. - mark all skipped tests at top of file. Update issue 4139. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6549054
* test/[n-z]*.go: add documentationRob Pike2012-02-241-0/+2
| | | | | | R=golang-dev, bradfitz, r CC=golang-dev http://codereview.appspot.com/5700056
* test: split golden.out into expected output per testIan Lance Taylor2012-01-181-2/+2
| | | | | | | | This will permit gccgo to check test output. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5554056
* test: fix windows buildRuss Cox2011-09-271-2/+2
| | | | | | TBR=bradfitz CC=golang-dev http://codereview.appspot.com/5124049
* test: disable sigchld test on WindowsRuss Cox2011-09-261-0/+1
| | | | | | | | | Alex Brainman reports that this is the only test that keeps us from running test/run. R=alex.brainman, lucio.dere, bradfitz, hectorchu CC=golang-dev http://codereview.appspot.com/4777043
* remove naclRuss Cox2010-12-151-1/+0
| | | | | | | | | | | | The recent linker changes broke NaCl support a month ago, and there are no known users of it. The NaCl code can always be recovered from the repository history. R=adg, r CC=golang-dev http://codereview.appspot.com/3671042
* test: remove semiocolons.Rob Pike2010-09-041-2/+2
| | | | | | | | The ken directory is untouched so we have some examples with explicit semis. R=gri CC=golang-dev http://codereview.appspot.com/2157041
* test/sigchld.go: use syscall.Kill instead of a combinationVinu Rajashekhar2010-07-281-1/+1
| | | | | | | | | | | | | | of syscall.Syscall and syscall.SYS_KILL. In RTEMS, there is no syscall.Syscall support, but it does support POSIX signals. So, if this testcase is changed to use syscall.Kill, then it would run fine on RTEMS, when using gccgo. R=rsc, iant CC=golang-dev http://codereview.appspot.com/1863046 Committer: Russ Cox <rsc@golang.org>
* runtime: closures, defer bug fix for Native ClientRuss Cox2010-04-221-0/+1
| | | | | | | | Enable package tests for Native Client build. R=r CC=golang-dev http://codereview.appspot.com/957042
* update Go tree to use new syscall package.Russ Cox2009-06-011-6/+1
| | | | | | | R=r DELTA=713 (109 added, 386 deleted, 218 changed) OCL=29707 CL=29722
* preparation for exec.Russ Cox2008-12-031-0/+19
* syscall: add syscall.RawSyscall, which doesn't use sys.entersyscall/sys.exitsyscall add syscall.dup2 add syscall.BytePtrPtr add syscall.Rusage, RusagePtr add syscall.F_GETFD, F_SETFD, FD_CLOEXEC * runtime: clean up, correct signal handling. can now survive (continue running after) a signal. R=r DELTA=394 (286 added, 51 deleted, 57 changed) OCL=20351 CL=20369