Commit b79634e3 by Jan Beulich Committed by Benjamin Kosnik

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
parent 3a3f4da9
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
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment