create_testsuite_files: Tweak.

2004-05-27  Jan Beulich  <jbeulich@novell.com>

	* scripts/create_testsuite_files: Tweak.

From-SVN: r82354
This commit is contained in:
Jan Beulich 2004-05-28 04:21:50 +00:00 committed by Benjamin Kosnik
parent cc2121787f
commit a9c70186f4
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2004-05-27 Jan Beulich <jbeulich@novell.com>
* scripts/create_testsuite_files: Tweak.
2004-05-25 Benjamin Kosnik <bkoz@redhat.com> 2004-05-25 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/15489 PR libstdc++/15489

View File

@ -35,10 +35,7 @@ dlist=`echo [0-9][0-9]*`
for d in [a-z]*; do for d in [a-z]*; do
test -d $d && dlist="$dlist $d" test -d $d && dlist="$dlist $d"
done done
find $dlist -type f -name "*.cc" | sort > $tmp.1 find $dlist "(" -type f -o -type l ")" -name "*.cc" | sort > $tmp.1
if test ! -s "$tmp.1"; then
find $dlist -type l -name "*.cc" | sort > $tmp.1
fi
if test ! -s "$tmp.1"; then if test ! -s "$tmp.1"; then
exit 1 exit 1
fi fi