Subject: | pipeline.t fails on FreeBSD with de_DE.ISO8859-1 locale |
The problem is that the behavior of "tr" is somewhat surprising on FreeBSD if the de_DE.ISO8859-1 locale is in effect:
$ echo AUTHOR | env LC_ALL=de_DE.ISO8859-1 tr '[A-Z]' '[a-z]'
atßhor
(The problem is probably caused by putting "ß" in the collation order between "s" and "t", or so)
This problem is causing the pipeline.t test to fail. Easiest fix: make sure an unproblematic locale is in use, i.e. by setting LC_ALL="C".
Regards,
Slaven