瀏覽代碼

Use `ignore` rather than not compile on big endian

Tamir Duberstein 1 月之前
父節點
當前提交
5ff57f1d9e
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      aya-obj/src/btf/btf.rs

+ 4 - 2
aya-obj/src/btf/btf.rs

@@ -1808,11 +1808,13 @@ mod tests {
         Btf::parse(&raw, Endianness::default()).unwrap();
     }
 
-    // Not possible to emulate file system file "/sys/kernel/btf/vmlinux" as big endian, so skip
     #[test]
     #[cfg(feature = "std")]
     #[cfg_attr(miri, ignore = "`open` not available when isolation is enabled")]
-    #[cfg(target_endian = "little")]
+    #[cfg_attr(
+        target_endian = "big",
+        ignore = "Not possible to emulate \"/sys/kernel/btf/vmlinux\" as big endian"
+    )]
     fn test_read_btf_from_sys_fs() {
         let btf = Btf::parse_file("/sys/kernel/btf/vmlinux", Endianness::default()).unwrap();
         let task_struct_id = btf