59df6a3e53
X-SVN-Rev: 20649
13 lines
329 B
Bash
Executable File
13 lines
329 B
Bash
Executable File
#!/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"
|
|
|