1. 04 Mar, 2014 18 commits
  2. 03 Mar, 2014 10 commits
  3. 02 Mar, 2014 4 commits
  4. 01 Mar, 2014 3 commits
    • Shenghou Ma's avatar
      syscall: workaround Dragonfly BSD kernel exec bug · 5fbd6044
      Shenghou Ma authored
      See also CL 4259056 for FreeBSD.
      
      Test program:
      // exec.go
      package main
      import (
              "log"
              "os"
              "os/exec"
              "runtime"
      )
      func main() {
              path := runtime.GOROOT() + "/src/pkg/net/http/cgi/testdata"
              cmd := &exec.Cmd{
                      Path:   "test.cgi",
                      Args:   []string{path + "/test.cgi"},
                      Dir:    path
                      Stdout: os.Stdout}
              if err := cmd.Start(); err != nil {
                      log.Fatal(err)
              }
              if err := cmd.Wait(); err != nil {
                      log.Fatal(err)
              }
      }
      
      $ go run exec.go
      2014/03/01 15:52:41 fork/exec test.cgi: argument list too long
      
      LGTM=iant
      R=rsc, iant
      CC=golang-codereviews
      https://golang.org/cl/69970044
      5fbd6044
    • Dave Cheney's avatar
      sync/atomic: skip broken tests on freebsd/arm and netbsd/arm · 5b456c74
      Dave Cheney authored
      Update #7338
      
      The nil deref tests are currently failing on the *bsd/arm platforms. In an effort to avoid the build deteriorating further I would like to skip these tests on freebsd/arm and netbsd/arm.
      
      LGTM=bradfitz, minux.ma
      R=golang-codereviews, bradfitz, minux.ma
      CC=golang-codereviews
      https://golang.org/cl/69870045
      5b456c74
    • Dave Cheney's avatar
      runtime: small Native Client fixes · 0c6e4b96
      Dave Cheney authored
      cgocall.c: define the CBARGS macro for GOARCH_amd64p32. I don't think the value of this macro will ever be used under nacl/amd64p32 but it is required to compile even if cgo is not used.
      
      hashmap.goc: amd64p32 uses 32bit words.
      
      LGTM=iant
      R=rsc, iant
      CC=golang-codereviews
      https://golang.org/cl/69960044
      0c6e4b96
  5. 28 Feb, 2014 5 commits