diff --git a/tools/release/c/allLocaleTest.sh b/tools/release/c/allLocaleTest.sh index cb705a5c649..fe1acade80b 100755 --- a/tools/release/c/allLocaleTest.sh +++ b/tools/release/c/allLocaleTest.sh @@ -1,10 +1,13 @@ #!/bin/sh +# +# Copyright (c) 2006-2008 IBM All Rights Reserved +# echo "Testing $1 in all locales" outfile=$1-locale.txt echo "" > $outfile for loc in `locale -a`; do echo LC_ALL=$loc >> $outfile -LC_ALL=$loc make check >> $outfile +LC_ALL=$loc make check >> $outfile 2>&1 done echo "Done testing $1 in all locales" diff --git a/tools/release/c/allTimezoneTest.sh b/tools/release/c/allTimezoneTest.sh index 3878453178c..ff5a0e18c2f 100755 --- a/tools/release/c/allTimezoneTest.sh +++ b/tools/release/c/allTimezoneTest.sh @@ -1,11 +1,14 @@ #!/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 >> $outfile +TZ=$timezone make check >> $outfile 2>&1 done echo "Done testing $1 in all timezones" diff --git a/tools/release/c/environmentTest.sh b/tools/release/c/environmentTest.sh index 5fa82be6831..9546b61f6a2 100755 --- a/tools/release/c/environmentTest.sh +++ b/tools/release/c/environmentTest.sh @@ -1,5 +1,7 @@ #!/bin/sh # +# Copyright (c) 2006-2008 IBM All Rights Reserved +# # This test script enumerates all locales and all timezones installed on a # machine (usually Linux), and runs the existing ICU4C tests to make sure that # the tests pass. Not everyone is using and testing ICU4C in the en_US locale @@ -10,8 +12,8 @@ cd $top_icu_dir/source/test/intltest $release_tools_dir/allLocaleTest.sh intltest & $release_tools_dir/allTimezoneTest.sh intltest & cd ../iotest -$release_tools_dir/allLocaleTest.sh iotest & -$release_tools_dir/allTimezoneTest.sh iotest & +# iotest uses a fixed filename for tests, so can't run in parallel +$release_tools_dir/allLocaleTest.sh iotest; $release_tools_dir/allTimezoneTest.sh iotest & cd ../cintltst $release_tools_dir/allLocaleTest.sh cintltst & $release_tools_dir/allTimezoneTest.sh cintltst &