The process hierarchy starts with tclsh (MacPorts), then a bunch of layers of
make and sh (from oath-toolkit's recursive `make check`), and finally the
test-fcntl executable. I was using MacPorts' "trace mode", which seems to be
responsible for the particularly high number of inherited open file
On 5/8/21 6:34 AM, Eric Blake wrote:
> but it would be a lot nicer if I didn't have to remember to do that
> after the fact. In fact, reading gnupload --help says it is as simple
> as calling:
>
> $ gnupload --to ... --symlink-regex ...
>
> in the first place. But --symlink-regex is not listed
On 5/9/21 7:51 AM, Bruno Haible wrote:
if (fd < 0)
-return fd;
+{
+ errno = ENOSYS;
+ return -1;
+}
If 'open' fails with errno equal to (say) EINTR or EAGAIN or EMFILE,
this doesn't mean the operating system lacks a randomness source; it
merel
Thanks for all those fixes (and the detailed reports!).