summaryrefslogtreecommitdiff
path: root/tests/lib
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-07-05 00:15:44 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-07-05 00:15:48 +0100
commit61f92b326da0efea1cf4d3c263ef0e0b7cacfc25 (patch)
treef186a790a765a894c20ec0f2bae9126df067dac1 /tests/lib
parent80489b3ec6643c06d525ec39a7d72135286ba62c (diff)
test suite: Always pass LC_COLLATE=C to sort(1).
Specifically, by replacing every invocation of sort with the new function t-sort. The one case where we already took care of this, we change LC_ALL to LC_COLLATE, which should be sufficient. Closes:#903006. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib b/tests/lib
index bad47c9..4ef275c 100644
--- a/tests/lib
+++ b/tests/lib
@@ -153,7 +153,7 @@ t-reporefs () {
exec >"$outputfile"
if test -d $whichrepo; then
cd $whichrepo
- git show-ref |sort
+ git show-ref |t-sort
fi)
}