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:
parent
7f527d26a8
commit
d9ba60dcfe
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user