fd22341aab
X-SVN-Rev: 24159
16 lines
391 B
Bash
Executable File
16 lines
391 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2006-2008 IBM All Rights Reserved
|
|
#
|
|
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 $2 >> $outfile 2>&1
|
|
done
|
|
|
|
echo "Done testing $1 in all timezones"
|
|
|