diff options
author | Jakob Unterwurzacher | 2020-02-15 17:21:30 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2020-02-15 17:21:30 +0100 |
commit | d5ce340c02601992cc9dab1bd7d3c2d95d81155e (patch) | |
tree | e709cea1677b2d9dff80ce83d5086aaaebf03c49 /internal/prefer_openssl/prefer_test.go | |
parent | 9aeb2a3df68539ad3a44283b9b94e1b28f011941 (diff) |
merge prefer_openssl package into stupidgcm
Now that I have discovered golang.org/x/sys/cpu and that Go
versions below 1.6 are uncommon, there was not much useful
code left in prefer_openssl.
Merge the remains into stupidgcm.
Diffstat (limited to 'internal/prefer_openssl/prefer_test.go')
-rw-r--r-- | internal/prefer_openssl/prefer_test.go | 23 |
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() - } -} |