From: Thomas Adam Subject: Re: umask assumptions in regressions To: Kyle Ackerman Cc: "gameoftrees@openbsd.org" Date: Thu, 17 Apr 2025 19:51:27 +0100 On Fri, Mar 28, 2025 at 09:14:52PM +0000, Kyle Ackerman wrote: > +umask 022 > regress_run_only="" The problem I have with this, is the umask setting is external to the environment which you're invoking "make tests" from. As such, if you know thwe umask is the cause of this, simply do: (umask 022; make tests) But I'm not keen on setting an explicit umask, regardless of how innocent a change this could be. Kindly, Thomas