Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
@@ -138,6 +138,7 @@ func (r *V2) Ping() error {
// Close kills the registry server
func (r *V2) Close() {
r.cmd.Process.Kill()
+ r.cmd.Process.Wait()
os.RemoveAll(r.dir)
}
@@ -186,6 +186,7 @@ func (t *testNotary) Ping() error {
func (t *testNotary) Close() {
t.cmd.Process.Kill()
+ t.cmd.Process.Wait()
os.RemoveAll(t.dir)