This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libstdc++/15489] New: testsuite_files determined incorrectly


When the source tree is consisting (mainly) of symbolic links (pointing into
another source tree), testsuite_files (as well as the other two related
variables) are empty, making a testsuite run meaningless. I'd suggest

--- /usr/local/src/gcc-3.4.0/libstdc++-v3/scripts/create_testsuite_files
2003-07-06 05:14:37.000000000 +0200
+++ 3.4.0/libstdc++-v3/scripts/create_testsuite_files	2004-05-14
14:54:57.000000000 +0200
@@ -35,7 +35,7 @@
 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

-- 
           Summary: testsuite_files determined incorrectly
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jbeulich at novell dot com
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15489


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]