1#!/bin/bash 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 timezones" 9outfile=$1-timezone.txt 10echo "" > $outfile 11for timezone in `locate /usr/share/zoneinfo/|fgrep -v /right/|fgrep -v /posix/`; do 12timezone=${timezone#/usr/share/zoneinfo/} 13echo TZ=$timezone >> $outfile 14TZ=$timezone make check $2 >> $outfile 2>&1 15done 16 17echo "Done testing $1 in all timezones" 18 19