blob: 3878453178c277f42969f8b3c04b7e60e25076af [file] [log] [blame]
#!/bin/bash
echo "Testing $1 in all timezones"
outfile=$1-timezone.txt
echo "" > $outfile
for timezone in `locate /usr/share/zoneinfo/|fgrep -v /right/|fgrep -v /posix/`; do
timezone=${timezone#/usr/share/zoneinfo/}
echo TZ=$timezone >> $outfile
TZ=$timezone make check >> $outfile
done
echo "Done testing $1 in all timezones"