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
This commit is contained in:
Joseph Myers 2009-09-02 17:00:24 +01:00 committed by Joseph Myers
parent aef8bce8f8
commit ea9549ff10
2 changed files with 16 additions and 1 deletions

View 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

View 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]