diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2003-07-28 04:05:30 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-07-28 04:05:30 +0000 |
commit | 2cb1c928829fda82663822dc35ef76de0395ad0a (patch) | |
tree | 29d9b3d4fd548c372f3ae73139f2961fde0f9327 | |
parent | ff6fe7a17787f492326bbfa3fd0850d33bd049b4 (diff) | |
download | gcc-2cb1c928829fda82663822dc35ef76de0395ad0a.zip gcc-2cb1c928829fda82663822dc35ef76de0395ad0a.tar.gz gcc-2cb1c928829fda82663822dc35ef76de0395ad0a.tar.bz2 |
1.cc, [...]: Update comment regarding the origin of LOCALEDIR.
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.
From-SVN: r69877
6 files changed, 20 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 304450a..cde2b7c 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 8201be5..5b360b1 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 927a550..389d372 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 1342949..d4abacc 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 a3232dd..cc8860b 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 0000000..bc3467d --- /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. + |