OSDN Git Service

* testsuite/lib/libstdc++.exp (libstdc++_init): Copy .tcc files
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 Sep 2009 16:00:24 +0000 (16:00 +0000)
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 Sep 2009 16:00:24 +0000 (16:00 +0000)
under util/ to remote host.  Copy .h and .hpp files at more levels
under util/ to remote host.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151336 138bc75d-0d04-0410-961f-82ee72b054a4

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

index d279425..dae73ae 100644 (file)
@@ -1,3 +1,9 @@
+2009-09-02  Joseph Myers  <joseph@codesourcery.com>
+
+       * testsuite/lib/libstdc++.exp (libstdc++_init): Copy .tcc files
+       under util/ to remote host.  Copy .h and .hpp files at more levels
+       under util/ to remote host.
+
 2009-09-02  Paolo Carlini  <paolo.carlini@oracle.com>
 
        * include/bits/stl_uninitialized.h
index eb15777..dc67368 100644 (file)
@@ -204,14 +204,23 @@ proc libstdc++_init { testfile } {
        # directory, and then add that to the search path.
        foreach src [glob "${srcdir}/util/*.h" \
                          "${srcdir}/util/*.cc" \
-                         "${srcdir}/util/*/*.hpp" \
+                         "${srcdir}/util/*.tcc" \
+                         "${srcdir}/util/*.hpp" \
+                         "${srcdir}/util/*/*.h" \
                          "${srcdir}/util/*/*.cc" \
+                         "${srcdir}/util/*/*.tcc" \
                          "${srcdir}/util/*/*.hpp" \
+                         "${srcdir}/util/*/*/*.h" \
                          "${srcdir}/util/*/*/*.cc" \
+                         "${srcdir}/util/*/*/*.tcc" \
                          "${srcdir}/util/*/*/*.hpp" \
+                         "${srcdir}/util/*/*/*/*.h" \
                          "${srcdir}/util/*/*/*/*.cc" \
+                         "${srcdir}/util/*/*/*/*.tcc" \
                          "${srcdir}/util/*/*/*/*.hpp" \
+                         "${srcdir}/util/*/*/*/*/*.h" \
                          "${srcdir}/util/*/*/*/*/*.cc" \
+                         "${srcdir}/util/*/*/*/*/*.tcc" \
                          "${srcdir}/util/*/*/*/*/*.hpp" ] {
            # Remove everything up to "util/..."
            set dst [string range $src [string length "${srcdir}/"] end]