diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-24 00:13:08 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-24 00:13:08 +0000 |
commit | 71540eaa30315c28dfb892c5f237c50b60154a48 (patch) | |
tree | 75f9ae07e3e63d274a8c880743a7bdcf37b33ae5 /libstdc++-v3/testsuite/lib | |
parent | e0679c13f25ea4527827b265ba5daceba177959f (diff) | |
download | gcc-71540eaa30315c28dfb892c5f237c50b60154a48.tar.gz |
2006-06-23 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/27984
* testsuite/lib/libstdc++.exp (libstdc++_init): Adjust
testing includes.
* docs/html/test.html: Adjust for testsuite changes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114955 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/testsuite/lib')
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index d7da29f77c3..d22648239ba 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -172,9 +172,9 @@ proc libstdc++_init { testfile } { # Do a bunch of handstands and backflips for cross compiling and # finding simulators... if [is_remote host] { - set header [remote_download host ${blddir}/testsuite/testsuite_hooks.h] + set header [remote_download host ${blddir}/testsuite/util/testsuite_hooks.h] if { $header == "" } { - verbose -log "Unable to download ${blddir}/testsuite/testsuite_hooks.h to host." + verbose -log "Unable to download ${blddir}/testsuite/util/testsuite_hooks.h to host." return "untested" } set cxx [transform "g++"] @@ -190,7 +190,7 @@ proc libstdc++_init { testfile } { set includes [exec sh $flags_file --build-includes] } else { set cxx [transform "g++"] - set includes "-I${srcdir}" + set includes "-I${srcdir}/util" set cxxldflags "" set cxxflags "-g -O2 -D_GLIBCXX_ASSERT -fmessage-length=0" } |