diff options
6 files changed, 20 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 304450a1a4b..cde2b7cb6ba 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,12 @@ +2003-07-28 Phil Edwards <pme@gcc.gnu.org> + + * testsuite/22_locale/messages/members/char/1.cc, + testsuite/22_locale/messages/members/char/2.cc, + testsuite/22_locale/messages/members/char/3.cc, + testsuite/22_locale/messages_byname/1.cc: Update comment regarding + the origin of LOCALEDIR. + * testsuite/lib/libstdc++-v3.exp: New file. + 2003-07-25 Benjamin Kosnik <bkoz@redhat.com> * include/bits/char_traits.h: Update copyright, tweak. diff --git a/libstdc++-v3/testsuite/22_locale/messages/members/char/1.cc b/libstdc++-v3/testsuite/22_locale/messages/members/char/1.cc index 8201be5bcd6..5b360b15a21 100644 --- a/libstdc++-v3/testsuite/22_locale/messages/members/char/1.cc +++ b/libstdc++-v3/testsuite/22_locale/messages/members/char/1.cc @@ -30,7 +30,7 @@ void test01() typedef std::messages<char>::string_type string_type; bool test = true; - // This is exported through RUNTESTFLAGS in testsuite/Makefile.am. + // This is defined through CXXFLAGS in scripts/testsuite_flags[.in]. const char* dir = LOCALEDIR; // basic construction diff --git a/libstdc++-v3/testsuite/22_locale/messages/members/char/2.cc b/libstdc++-v3/testsuite/22_locale/messages/members/char/2.cc index 927a55046f6..389d3721a1b 100644 --- a/libstdc++-v3/testsuite/22_locale/messages/members/char/2.cc +++ b/libstdc++-v3/testsuite/22_locale/messages/members/char/2.cc @@ -30,7 +30,7 @@ void test02() typedef std::messages<char>::string_type string_type; bool test = true; - // This is exported through RUNTESTFLAGS in testsuite/Makefile.am. + // This is defined through CXXFLAGS in scripts/testsuite_flags[.in]. const char* dir = LOCALEDIR; // basic construction diff --git a/libstdc++-v3/testsuite/22_locale/messages/members/char/3.cc b/libstdc++-v3/testsuite/22_locale/messages/members/char/3.cc index 134294958e3..d4abacc99ed 100644 --- a/libstdc++-v3/testsuite/22_locale/messages/members/char/3.cc +++ b/libstdc++-v3/testsuite/22_locale/messages/members/char/3.cc @@ -30,7 +30,7 @@ void test03() typedef std::messages<char>::string_type string_type; bool test = true; - // This is exported through RUNTESTFLAGS in testsuite/Makefile.am. + // This is defined through CXXFLAGS in scripts/testsuite_flags[.in]. const char* dir = LOCALEDIR; // basic construction diff --git a/libstdc++-v3/testsuite/22_locale/messages_byname/1.cc b/libstdc++-v3/testsuite/22_locale/messages_byname/1.cc index a3232dd4c95..cc8860bef9d 100644 --- a/libstdc++-v3/testsuite/22_locale/messages_byname/1.cc +++ b/libstdc++-v3/testsuite/22_locale/messages_byname/1.cc @@ -31,7 +31,7 @@ void test01() bool test = true; string str; - // This is exported through RUNTESTFLAGS in testsuite/Makefile.am. + // This is defined through CXXFLAGS in scripts/testsuite_flags[.in]. const char* dir = LOCALEDIR; locale loc_c = locale::classic(); diff --git a/libstdc++-v3/testsuite/lib/libstdc++-v3.exp b/libstdc++-v3/testsuite/lib/libstdc++-v3.exp new file mode 100644 index 00000000000..bc3467dd9e9 --- /dev/null +++ b/libstdc++-v3/testsuite/lib/libstdc++-v3.exp @@ -0,0 +1,7 @@ + +# This is the "tool init file" for libstdc++-v3. There's nothing here. +# It's simply a placeholder for two reasons. First, to show where we would +# put things, in case we ever want to take advantage of the tool init file. +# Second, to make dejagnu shut up about "WARNING could not find tool init +# file," which is harmless but tends to scare/confuse people. + |