mem: Skip TestVirtual_memory on Solaris
This commit is contained in:
parent
a34d626e17
commit
d19ac24a84
|
@ -2,12 +2,17 @@ package mem
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"runtime"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestVirtual_memory(t *testing.T) {
|
func TestVirtual_memory(t *testing.T) {
|
||||||
|
if runtime.GOOS == "solaris" {
|
||||||
|
t.Skip("Only .Total is supported on Solaris")
|
||||||
|
}
|
||||||
|
|
||||||
v, err := VirtualMemory()
|
v, err := VirtualMemory()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("error %v", err)
|
t.Errorf("error %v", err)
|
||||||
|
|
Loading…
Reference in New Issue