The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix lib-string/binary.ml test on ppc64

+1
+1
testsuite/tests/lib-string/binary.ml
··· 97 97 98 98 let () = 99 99 let b = "\xfe\xdc\xba\x98\x76\x54\x32\x10\x01\x00" in 100 + let b = Bytes.(to_string (copy (of_string b))) in 100 101 assert (String.get_int64_le b 0 = 0x1032547698badcfeL); 101 102 assert (String.get_int64_be b 0 = 0xfedcba9876543210L); 102 103 assert (String.get_int64_le b 1 = 0x011032547698badcL);