Introduce JSON-RPC service

This commit is contained in:
Derek Parker
2015-06-20 22:47:44 -05:00
parent 5642e0a106
commit 687dc4172d
12 changed files with 574 additions and 45 deletions

View File

@ -3,6 +3,7 @@ package proc
import (
"bytes"
"encoding/binary"
"os"
"path/filepath"
"runtime"
"testing"
@ -15,7 +16,7 @@ func init() {
}
func TestMain(m *testing.M) {
protest.RunTestsWithFixtures(m)
os.Exit(protest.RunTestsWithFixtures(m))
}
func withTestProcess(name string, t *testing.T, fn func(p *Process, fixture protest.Fixture)) {