On Mon, Oct 30, 2023 at 1:27 AM Samuel Thibault <samuel.thiba...@gnu.org> wrote: > Samuel Thibault, le ven. 27 oct. 2023 08:48:19 +0200, a ecrit: > > while [ "$(echo -n `echo internal/reflectlite.s-gox | sed -e > > 's/s-gox/gox/' ` )" = internal/reflectlite.gox ] ; do : ; done > > For now, I could reproduce with > > time while [ "$(echo -n `echo a` )" = a ] ; do : ; done > > by running two of them in parallel, along with an apt install loop in > parallel. It takes a few hours to reproduce (sometimes 1, sometimes > 3...)
This could be [0], considering [ is a Bash built-in and not /bin/[, so it's Bash that both compares strings and receives SIGCHLDs. [0]: https://lists.gnu.org/archive/html/bug-hurd/2023-06/msg00105.html Sergey