diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-02 16:00:24 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-02 16:00:24 +0000 |
commit | dfdfba40c33e30656bb1e396990524750c505366 (patch) | |
tree | cbcc05283180f63fb24fa9ff3f6c787e0d8ee8c9 /libstdc++-v3/testsuite/lib | |
parent | 7c8750c15d57df1cda76bc66e0a7a59bd4544f2e (diff) | |
download | gcc-dfdfba40c33e30656bb1e396990524750c505366.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/lib')
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index eb157770e15..dc67368a7d5 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] |