diff options
author | Laurent GUERBY <laurent@guerby.net> | 2006-05-08 16:50:40 +0000 |
---|---|---|
committer | Laurent Guerby <guerby@gcc.gnu.org> | 2006-05-08 16:50:40 +0000 |
commit | 13637c491f74ce8bb97d14d2fd6a7c935800e724 (patch) | |
tree | 3c62d6e1c3c997bb125b5b4fc9fe94ffe90c943a /gcc/testsuite/ada | |
parent | 2813414c11c2b6539b0d657686f8f4ba2d96a704 (diff) | |
download | gcc-13637c491f74ce8bb97d14d2fd6a7c935800e724.tar.gz |
re PR testsuite/27476 (ACATS: Ada testsuite Bourne shell compatibility problem on hpux)
2006-05-08 Laurent GUERBY <laurent@guerby.net>
PR testsuite/27476
* ada/acats/run_all.sh: Use test -z.
From-SVN: r113630
Diffstat (limited to 'gcc/testsuite/ada')
-rwxr-xr-x | gcc/testsuite/ada/acats/run_all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/ada/acats/run_all.sh b/gcc/testsuite/ada/acats/run_all.sh index d5b6feea045..e452272c860 100755 --- a/gcc/testsuite/ada/acats/run_all.sh +++ b/gcc/testsuite/ada/acats/run_all.sh @@ -239,7 +239,7 @@ for chapter in $chapters; do target_gnatchop -c -w `ls ${test}*.a ${test}*.ada ${test}*.adt ${test}*.am ${test}*.dep 2> /dev/null` >> $dir/acats.log 2>&1 main="" find_main - if [ "$main" == "" ]; then + if [ -z "$main" ]; then sync find_main fi |