re PR libstdc++/15489 (testsuite_files determined incorrectly)
authorJan Beulich <jbeulich@novell.com>
Tue, 18 May 2004 18:42:27 +0000 (18:42 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 18 May 2004 18:42:27 +0000 (18:42 +0000)
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

libstdc++-v3/ChangeLog
libstdc++-v3/scripts/create_testsuite_files
libstdc++-v3/testsuite/lib/libstdc++.exp

index 7ec7e3c057d05aa374104e0883b477ff05ff4cb5..6896f16dcd4c814ff904722da9734053564cedde 100644 (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
index 7fbcbdb2fb3a0e5640cca0397e228c24ead20302..f97b6e69b233626ef8635efdf830a2a70b64627e 100755 (executable)
@@ -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
index 4e0d86df74a00c0c2b02f0095e163cb60da8866e..04d5a813b141fa4f37116a47e62a68ac487ef681 100644 (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
     }
 }