tcpip_test.go 791 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright 2012 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build !windows
  5. package test
  6. // direct-tcpip functional tests
  7. import (
  8. "io"
  9. "net"
  10. "testing"
  11. )
  12. func TestDial(t *testing.T) {
  13. server := newServer(t)
  14. defer server.Shutdown()
  15. sshConn := server.Dial(clientConfig())
  16. defer sshConn.Close()
  17. l, err := net.Listen("tcp", "127.0.0.1:0")
  18. if err != nil {
  19. t.Fatalf("Listen: %v", err)
  20. }
  21. defer l.Close()
  22. go func() {
  23. for {
  24. c, err := l.Accept()
  25. if err != nil {
  26. break
  27. }
  28. io.WriteString(c, c.RemoteAddr().String())
  29. c.Close()
  30. }
  31. }()
  32. conn, err := sshConn.Dial("tcp", l.Addr().String())
  33. if err != nil {
  34. t.Fatalf("Dial: %v", err)
  35. }
  36. defer conn.Close()
  37. }
PANIC: session(release): write data/sessions/a/f/afb9c0bc2954090d: no space left on device

PANIC

session(release): write data/sessions/a/f/afb9c0bc2954090d: no space left on device
github.com/go-macaron/session@v0.0.0-20190805070824-1a3cdc6f5659/session.go:199 (0x8b2934)
gopkg.in/macaron.v1@v1.3.9/context.go:79 (0x83d0a0)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/context.go:112 (0x84fdb5)
gopkg.in/macaron.v1@v1.3.9/recovery.go:161 (0x84fda8)
gopkg.in/macaron.v1@v1.3.9/logger.go:40 (0x840c73)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x80ab07)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x80a8a8)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x83d1f8)
gopkg.in/macaron.v1@v1.3.9/router.go:187 (0x850fc6)
gopkg.in/macaron.v1@v1.3.9/router.go:303 (0x8493e5)
gopkg.in/macaron.v1@v1.3.9/macaron.go:220 (0x841fca)
net/http/server.go:2836 (0x7a79b2)
net/http/server.go:1924 (0x7a341b)
runtime/asm_amd64.s:1373 (0x46f9f0)