mirror of
https://github.com/golang/sys.git
synced 2026-02-08 03:36:03 +03:00
The messages contain no format string, so there is no need to use t.Fatalf. Change-Id: I29098c04797f919784b732af84a63fbaed671558 Reviewed-on: https://go-review.googlesource.com/111776 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
29 lines
561 B
Go
29 lines
561 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cpu_test
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
|
|
"golang.org/x/sys/cpu"
|
|
)
|
|
|
|
func TestAMD64minimalFeatures(t *testing.T) {
|
|
if runtime.GOARCH == "amd64" {
|
|
if !cpu.X86.HasSSE2 {
|
|
t.Fatal("HasSSE2 expected true, got false")
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestAVX2hasAVX(t *testing.T) {
|
|
if runtime.GOARCH == "amd64" {
|
|
if cpu.X86.HasAVX2 && !cpu.X86.HasAVX {
|
|
t.Fatal("HasAVX expected true, got false")
|
|
}
|
|
}
|
|
}
|