Commit a1d31db4 by Paolo Carlini Committed by Paolo Carlini

max_size.cc: Actually do test max_size().

2006-10-30  Paolo Carlini  <pcarlini@suse.de>

	* testsuite/tr1/6_containers/array/capacity/max_size.cc: Actually
	do test max_size().

From-SVN: r118194
parent 91de1527
2006-10-30 Paolo Carlini <pcarlini@suse.de>
* testsuite/tr1/6_containers/array/capacity/max_size.cc: Actually
do test max_size().
2006-10-30 Joseph Myers <joseph@codesourcery.com>
* testsuite/config/default.exp (${tool}_target_compile): Use
......
// 2004-10-20 Benjamin Kosnik <bkoz@redhat.com>
//
// Copyright (C) 2004 Free Software Foundation, Inc.
// Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
......@@ -32,7 +32,7 @@ test01()
bool test __attribute__((unused)) = true;
array_type a = { 0, 1, 2, 3, 4 };
VERIFY( a.size() == len );
VERIFY( a.max_size() == len );
}
{
......@@ -41,7 +41,7 @@ test01()
bool test __attribute__((unused)) = true;
array_type a;
VERIFY( a.size() == len );
VERIFY( a.max_size() == len );
}
}
......@@ -50,4 +50,3 @@ int main()
test01();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment