5f4b16c00f
Also delete the unused "dirIVNameStruct", found by deadcode.
24 lines
407 B
Go
24 lines
407 B
Go
package prefer_openssl
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCurrentCPU(t *testing.T) {
|
|
t.Logf("PreferOpenSSL=%v", PreferOpenSSL())
|
|
}
|
|
|
|
// Has AES instructions
|
|
func TestXeonE312xx(t *testing.T) {
|
|
if filePreferOpenSSL("cpuinfo.xeon_e312xx.txt") {
|
|
t.Fail()
|
|
}
|
|
}
|
|
|
|
// Pentium G do not have AES instructions
|
|
func TestPentiumG630(t *testing.T) {
|
|
if !filePreferOpenSSL("cpuinfo.pentium_g630.txt") {
|
|
t.Fail()
|
|
}
|
|
}
|