diff options
author | Joseph Myers <joseph@codesourcery.com> | 2009-09-02 17:00:24 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2009-09-02 17:00:24 +0100 |
commit | ea9549ff10038f139e1ec4935b1af42a7499e155 (patch) | |
tree | cbcc05283180f63fb24fa9ff3f6c787e0d8ee8c9 | |
parent | aef8bce8f861da1d9c2e2d10c6a9a30f3f630e95 (diff) | |
download | gcc-ea9549ff10038f139e1ec4935b1af42a7499e155.zip gcc-ea9549ff10038f139e1ec4935b1af42a7499e155.tar.gz gcc-ea9549ff10038f139e1ec4935b1af42a7499e155.tar.bz2 |
libstdc++.exp (libstdc++_init): Copy .tcc files under util/ to remote host.
* 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.
From-SVN: r151336
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 11 |
2 files changed, 16 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index d279425..dae73ae 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -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 diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index eb15777..dc67368 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -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] |