Commit c440459b by Jonathan Wakely Committed by Jonathan Wakely

pointer.cc: Fix which tests are run.

2010-06-02  Jonathan Wakely  <jwakely.gcc@gmail.com>

	* testsuite/tr1/2_general_utilities/shared_ptr/cons/pointer.cc: Fix
	which tests are run.
	* testsuite/20_util/shared_ptr/cons/pointer.cc: Likewise.

From-SVN: r160182
parent a6198222
2010-06-02 Jonathan Wakely <jwakely.gcc@gmail.com>
* testsuite/tr1/2_general_utilities/shared_ptr/cons/pointer.cc: Fix
which tests are run.
* testsuite/20_util/shared_ptr/cons/pointer.cc: Likewise.
2010-06-01 Maxim Kuvyrkov <maxim@codesourcery.com> 2010-06-01 Maxim Kuvyrkov <maxim@codesourcery.com>
* acinclude.m4, configure.host: Support Bionic C library. * acinclude.m4, configure.host: Support Bionic C library.
......
// { dg-options "-std=gnu++0x" } // { dg-options "-std=gnu++0x" }
// Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation // Copyright (C) 2005, 2006, 2007, 2009, 2010 Free Software Foundation
// //
// This file is part of the GNU ISO C++ Library. This library is free // 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 // software; you can redistribute it and/or modify it under the
...@@ -75,6 +75,6 @@ main() ...@@ -75,6 +75,6 @@ main()
{ {
test01(); test01();
test02(); test02();
test02(); test03();
return 0; return 0;
} }
// Copyright (C) 2005, 2009 Free Software Foundation // Copyright (C) 2005, 2009, 2010 Free Software Foundation
// //
// This file is part of the GNU ISO C++ Library. This library is free // 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 // software; you can redistribute it and/or modify it under the
...@@ -73,6 +73,6 @@ main() ...@@ -73,6 +73,6 @@ main()
{ {
test01(); test01();
test02(); test02();
test02(); test03();
return 0; 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