18654.cc: Use better names.

2004-11-29  Paolo Carlini  <pcarlini@suse.de>

        * testsuite/21_strings/basic_string/capacity/char/18654.cc: Use
	better names.
        * testsuite/21_strings/basic_string/capacity/wchar_t/18654.cc: Same.

From-SVN: r91469
This commit is contained in:
Paolo Carlini 2004-11-29 13:29:54 +00:00 committed by Paolo Carlini
parent 22bbc492b2
commit 4f70f9d237
3 changed files with 13 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2004-11-29 Paolo Carlini <pcarlini@suse.de>
* testsuite/21_strings/basic_string/capacity/char/18654.cc: Use
better names.
* testsuite/21_strings/basic_string/capacity/wchar_t/18654.cc: Same.
2004-11-29 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/18654

View File

@ -34,9 +34,9 @@ void test01()
// Our current implementation provides exact shrink-to-size
// and shrink-to-fit (in the future, maybe this will change
// for short strings).
size_type min = 2 << 0;
size_type max = 2 << 20;
for (size_type i = min; i <= max; i *= 2)
const size_type minsize = 2 << 0;
const size_type maxsize = 2 << 20;
for (size_type i = minsize; i <= maxsize; i *= 2)
{
string str(i, 'x');
str.reserve(3 * i);
@ -49,7 +49,7 @@ void test01()
}
}
int main()
int main()
{
test01();
return 0;

View File

@ -34,9 +34,9 @@ void test01()
// Our current implementation provides exact shrink-to-size
// and shrink-to-fit (in the future, maybe this will change
// for short strings).
size_type min = 2 << 0;
size_type max = 2 << 20;
for (size_type i = min; i <= max; i *= 2)
const size_type minsize = 2 << 0;
const size_type maxsize = 2 << 20;
for (size_type i = minsize; i <= maxsize; i *= 2)
{
wstring str(i, L'x');
str.reserve(3 * i);