re PR libstdc++/15489 (testsuite_files determined incorrectly)

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

        PR libstdc++/15489
        * scripts/create_testsuite_files: Also find source files through
          symbolic links.

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

	PR libstdc++/15488
	* testsuite/lib/libstdc++.exp: Make test files writable.

From-SVN: r82002
This commit is contained in:
Jan Beulich 2004-05-18 18:42:27 +00:00 committed by Benjamin Kosnik
parent 3a3f4da937
commit b79634e3d8
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2004-05-18 Jan Beulich <jbeulich@novell.com>
PR libstdc++/15489
* scripts/create_testsuite_files: Also find source files through
symbolic links.
2004-05-18 Jan Beulich <jbeulich@novell.com>
PR libstdc++/15488
* testsuite/lib/libstdc++.exp: Make test files writable.
2004-05-18 Paolo Carlini <pcarlini@suse.de>
* include/ext/mt_allocator.h:(__mt_alloc::allocate): Minor

View File

@ -35,7 +35,7 @@ dlist=`echo [0-9][0-9]*`
for d in [a-z]*; do
test -d $d && dlist="$dlist $d"
done
find $dlist -type f -name "*.cc" | sort > $tmp.1
find $dlist -xtype f -name "*.cc" | sort > $tmp.1
# If the library is not configured to support wchar_t, don't run those tests.
if test -f "$outdir/testsuite_wchar_t"; then

View File

@ -71,6 +71,9 @@ proc v3-copy-files {srcfiles} {
remote_download target $dirname/$symlink
}
}
set dirname [file dirname $f]
set basename [file tail $f]
file attributes $dirname/$basename -permissions a+w
}
}