• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

maruel / panicparse / 143
65%

Build:
DEFAULT BRANCH: master
Ran 16 Oct 2017 10:38PM UTC
Jobs 2
Files 4
Run time 9s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
143

push

travis-ci

maruel
Add map and channel type (#34)

* Add map and channel type

* Add tests for map/channel type

Closes #30

* Better handle complex types

* Update name to use switch statement

* Skip processing of last Stack.Calls element instead of first

The leaf function wasn't being processed before, so the following snippet:

  package main

  func g([]string) {
    panic("g")
  }

  func f(map[int]int) {
    g(make([]string, 5))
    panic("f")
  }

  func main() {
    f(map[int]int{})
  }

resulted in:

  panic: g

  exit status 2

  To see all goroutines, visit https://github.com/maruel/panicparse#GOTRACEBACK

  18:25:04.051198 load(/path/to/main.go)
  1: running
      main main.go:4  g(0xc420045ee8, 0x5, 0x5)
      main main.go:8  f(map[int]int(0xc420078000))
      main main.go:13 main()

and now results in:

  panic: g

  exit status 2

  To see all goroutines, visit https://github.com/maruel/panicparse#GOTRACEBACK

  18:25:42.981470 load(/path/to/main.go)
  1: running
      main main.go:4  g([]string(0xc420045ee8 len=5 cap=5))
      main main.go:8  f(map[int]int(0xc420066000))
      main main.go:13 main()

517 of 850 relevant lines covered (60.82%)

32.06 hits per line

Jobs
ID Job ID Ran Files Coverage
1 143.1 16 Oct 2017 10:38PM UTC 0
60.82
Travis Job 143.1
2 143.2 16 Oct 2017 10:38PM UTC 0
60.82
Travis Job 143.2
Source Files on build 143
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #143
  • f6ee1e45 on github
  • Prev Build on master (#139)
  • Next Build on master (#146)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc