aboutsummaryrefslogtreecommitdiff
path: root/internal/prefer_openssl/prefer_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/prefer_openssl/prefer_test.go')
-rw-r--r--internal/prefer_openssl/prefer_test.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/internal/prefer_openssl/prefer_test.go b/internal/prefer_openssl/prefer_test.go
deleted file mode 100644
index 289a0a9..0000000
--- a/internal/prefer_openssl/prefer_test.go
+++ /dev/null
@@ -1,23 +0,0 @@
-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()
- }
-}