aboutsummaryrefslogtreecommitdiff
path: root/test/long_mode
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2025-06-01 23:51:42 +0000
committeriximeow <me@iximeow.net>2025-06-01 23:51:42 +0000
commit016cb77445857b63b3c5ba3ea095c5a36a357fbd (patch)
tree4110c29afa61c45234f8fd6e095fb6928feb9c00 /test/long_mode
parentcf9ab8fcd04608c565da4fd1aff5bff47a5fe385 (diff)
3dnow was still supported on K8, K10. 32-bit mode should learn about uarch tweaks too
Diffstat (limited to 'test/long_mode')
-rw-r--r--test/long_mode/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/long_mode/mod.rs b/test/long_mode/mod.rs
index 9493a63..2c7771c 100644
--- a/test/long_mode/mod.rs
+++ b/test/long_mode/mod.rs
@@ -3454,7 +3454,8 @@ fn test_3dnow() {
test_display_under(&InstDecoder::default(), bytes, text);
test_invalid_under(&InstDecoder::minimal(), bytes);
test_invalid_under(&InstDecoder::minimal(), bytes);
- test_invalid_under(&yaxpeax_x86::long_mode::uarch::amd::k8(), bytes);
+ test_display_under(&yaxpeax_x86::long_mode::uarch::amd::k8(), bytes, text);
+ test_invalid_under(&yaxpeax_x86::long_mode::uarch::amd::bulldozer(), bytes);
test_invalid_under(&yaxpeax_x86::long_mode::uarch::intel::netburst(), bytes);
}