tests: Add test for #149, fixed TestNextGeneral on tip

The go compiler changed and break statements no longer get compiled to
nothing when -N is passed:

https://go-review.googlesource.com/#/c/19848/
https://go-review.googlesource.com/#/c/19854/
This commit is contained in:
aarzilli
2016-02-25 10:48:42 +01:00
committed by Derek Parker
parent 216616c34e
commit 49a0a121e0
6 changed files with 113 additions and 37 deletions

View File

@ -3,9 +3,9 @@
package proc
import (
"syscall"
"testing"
"time"
"syscall"
protest "github.com/derekparker/delve/proc/test"
)