test: disable avx512 test when backend is 'rr' (#2547)

The rr backend does not report avx512 registers back to us.
This commit is contained in:
Alessandro Arzilli 2021-06-28 18:48:51 +02:00 committed by GitHub
parent 7f527d26a8
commit d9ba60dcfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1565,7 +1565,7 @@ func TestClientServer_FpRegisters(t *testing.T) {
if regtest.name == "XMM11" && !avx2 {
continue
}
if regtest.name == "XMM12" && !avx512 {
if regtest.name == "XMM12" && (!avx512 || testBackend == "rr") {
continue
}
found := false