Description: Skip the cross-implementation comparison test
Author: Jelmer Vernooĳ <jelmer@debian.org>
Forwarded: not-needed
Index: unicode-ident/tests/compare.rs
===================================================================
--- unicode-ident.orig/tests/compare.rs
+++ unicode-ident/tests/compare.rs
@@ -8,6 +8,12 @@ mod trie;

 #[test]
 fn compare_all_implementations() {
+    // Disabled in Debian: this test asserts byte-for-byte agreement with
+    // unicode-xid, ucd-trie, fst and roaring, but those crates are packaged
+    // independently and may track a different Unicode version than
+    // unicode-ident, causing spurious failures on newly assigned characters.
+    return;
+    #[allow(unreachable_code)]
     let xid_start_fst = fst::xid_start_fst();
     let xid_continue_fst = fst::xid_continue_fst();
     let xid_start_roaring = roaring::xid_start_bitmap();
