This file is indexed.

/usr/share/gocode/src/github.com/shirou/gopsutil/cpu/cpu_freebsd_test.go is in golang-github-shirou-gopsutil-dev 2.17.08-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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package cpu

import (
	"path/filepath"
	"runtime"
	"testing"

	"github.com/shirou/gopsutil/internal/common"
)

func TestParseDmesgBoot(t *testing.T) {
	if runtime.GOOS != "freebsd" {
		t.SkipNow()
	}

	var cpuTests = []struct {
		file   string
		cpuNum int
		cores  int32
	}{
		{"1cpu_2core.txt", 1, 2},
		{"1cpu_4core.txt", 1, 4},
		{"2cpu_4core.txt", 2, 4},
	}
	for _, tt := range cpuTests {
		v, num, err := parseDmesgBoot(filepath.Join("testdata", "freebsd", tt.file))
		if err != nil {
			t.Errorf("parseDmesgBoot failed(%s), %v", tt.file, err)
		}
		if num != tt.cpuNum {
			t.Errorf("parseDmesgBoot wrong length(%s), %v", tt.file, err)
		}
		if v.Cores != tt.cores {
			t.Errorf("parseDmesgBoot wrong core(%s), %v", tt.file, err)
		}
		if !common.StringsContains(v.Flags, "fpu") {
			t.Errorf("parseDmesgBoot fail to parse features(%s), %v", tt.file, err)
		}
	}
}