mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 01:15:43 +03:00
45 lines
679 B
Go
45 lines
679 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build linux
|
|
|
|
package numalib
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
|
|
"github.com/shoenig/test/must"
|
|
)
|
|
|
|
func requiresSMBIOS(t *testing.T) {
|
|
if os.Getuid() != 0 {
|
|
t.Skip("requires root")
|
|
}
|
|
|
|
p, err := exec.LookPath("dmidecode")
|
|
if err != nil {
|
|
t.Skip("requires dmidecode package")
|
|
}
|
|
|
|
if p == "" {
|
|
t.Skip("requires dmidecode on path")
|
|
}
|
|
}
|
|
|
|
func TestSmbios_detectSpeed(t *testing.T) {
|
|
requiresSMBIOS(t)
|
|
|
|
top := new(Topology)
|
|
sysfs := new(Sysfs)
|
|
smbios := new(Smbios)
|
|
|
|
sysfs.ScanSystem(top)
|
|
smbios.ScanSystem(top)
|
|
|
|
for _, core := range top.Cores {
|
|
must.Positive(t, core.GuessSpeed)
|
|
}
|
|
}
|