1#!/bin/sh 2# 3# Copyright (C) 2017 and later: Unicode, Inc. and others. 4# License & terms of use: http://www.unicode.org/copyright.html 5# 6# Copyright (c) 2006-2008 IBM All Rights Reserved 7# 8echo "Testing $1 in all locales" 9outfile=$1-locale.txt 10echo "" > $outfile 11for loc in `locale -a`; do 12echo LC_ALL=$loc >> $outfile 13LC_ALL=$loc make check $2 >> $outfile 2>&1 14done 15 16echo "Done testing $1 in all locales" 17 18