This file is indexed.

/usr/share/gocode/src/github.com/tendermint/go-common/service_test.go is in golang-github-tendermint-go-common-dev 0~20170309~0gitdcb015d-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package common

import (
	"testing"
)

func TestBaseServiceWait(t *testing.T) {

	type TestService struct {
		BaseService
	}
	ts := &TestService{}
	ts.BaseService = *NewBaseService(nil, "TestService", ts)
	ts.Start()

	go func() {
		ts.Stop()
	}()

	for i := 0; i < 10; i++ {
		ts.Wait()
	}

}