mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
3a3f4da937
commit
b79634e3d8
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue