diff options
Diffstat (limited to 'libstdc++-v3/testsuite/ext/array_allocator/1.cc')
-rw-r--r-- | libstdc++-v3/testsuite/ext/array_allocator/1.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libstdc++-v3/testsuite/ext/array_allocator/1.cc b/libstdc++-v3/testsuite/ext/array_allocator/1.cc index 68cbc73f3f7..e0ea6f5ab13 100644 --- a/libstdc++-v3/testsuite/ext/array_allocator/1.cc +++ b/libstdc++-v3/testsuite/ext/array_allocator/1.cc @@ -25,9 +25,9 @@ // invalidate any other reasons why the executable file might be covered by // the GNU General Public License. -#include <cassert> #include <string> #include <ext/array_allocator.h> +#include <testsuite_hooks.h> typedef char char_type; typedef std::char_traits<char_type> traits_type; @@ -37,6 +37,8 @@ array_type extern_array; void test01() { + bool test __attribute__((unused)) = true; + using std::basic_string; typedef __gnu_cxx::array_allocator<char_type, array_type> allocator_type; typedef basic_string<char_type, traits_type, allocator_type> string_type; @@ -50,11 +52,11 @@ void test01() } catch(std::bad_alloc& obj) { - assert(true); + VERIFY( true ); } catch(...) { - assert(false); + VERIFY( false ); } } |