aboutsummaryrefslogtreecommitdiff
path: root/test/regspec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test/regspec.rs')
-rw-r--r--test/regspec.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/regspec.rs b/test/regspec.rs
new file mode 100644
index 0000000..914c376
--- /dev/null
+++ b/test/regspec.rs
@@ -0,0 +1,22 @@
+use yaxpeax_x86::long_mode::RegSpec;
+use std::collections::{BTreeMap, HashMap};
+
+#[test]
+fn test_ord() {
+ let _: BTreeMap<RegSpec, u64> = BTreeMap::new();
+}
+
+#[test]
+fn test_hash() {
+ let _: HashMap<RegSpec, u64> = HashMap::new();
+}
+
+#[test]
+fn test_labels() {
+ assert_eq!(RegSpec::rip().name(), "rip");
+ assert_eq!(RegSpec::eip().name(), "eip");
+ assert_eq!(RegSpec::rflags().name(), "rflags");
+ assert_eq!(RegSpec::rbp().name(), "rbp");
+ assert_eq!(RegSpec::gs().name(), "gs");
+ assert_eq!(RegSpec::al().name(), "al");
+}