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.

Merge pull request #127 from talex5/fix-mkdir-test

Fix mkdir test

authored by

Thomas Leonard and committed by
GitHub
fb3b59d4 7dbbcca8

+2 -2
+2 -2
vendor/opam/uring/tests/main.md
··· 877 877 # Uring.wait t;; 878 878 - : [ `Mkdir of int ] Uring.completion_option = 879 879 Uring.Some {Uring.result = 0; data = `Mkdir 0} 880 - # (Unix.stat "mkdir").st_perm;; 881 - - : int = 448 880 + # Printf.sprintf "0o%o" ((Unix.stat "mkdir").st_perm land 0o777);; 881 + - : string = "0o700" 882 882 # let v = Uring.mkdirat t ~mode:0o755 "mkdir" (`Mkdir 1);; 883 883 val v : [ `Mkdir of int ] Uring.job option = Some <abstr> 884 884 # Uring.submit t;;