6.cc: Adjust test name.

2009-06-03  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/23_containers/list/cons/6.cc: Adjust test name.

From-SVN: r148140
This commit is contained in:
Benjamin Kosnik 2009-06-03 17:44:43 +00:00 committed by Benjamin Kosnik
parent ff35822bca
commit b49e9f7a3d
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-06-03 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/23_containers/list/cons/6.cc: Adjust test name.
2009-06-02 Richard Sandiford <r.sandiford@uk.ibm.com>
* crossconfig.m4 (GLIBCXX_CROSSCONFIG): Handle AIX targets.

View File

@ -30,7 +30,7 @@
//
template<typename _Tp>
void
cons05()
cons06()
{
bool test __attribute__((unused)) = true;
const int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17};
@ -66,7 +66,7 @@ cons05()
int main()
{
cons05<std::list<int> >();
cons06<std::list<int> >();
return 0;
}