2 // { dg-options "-g -O0 -std=gnu++98" }
3 // { dg-skip-if "" { *-*-* } { "-D_GLIBCXX_PROFILE" } }
5 // Copyright (C) 2011-2018 Free Software Foundation, Inc.
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3. If not see
20 // <http://www.gnu.org/licenses/>.
22 #ifndef _GLIBCXX_DEBUG
23 # define _GLIBCXX_DEBUG
40 std::string str
= "zardoz";
41 // { dg-final { note-test str "\"zardoz\"" } }
47 // { dg-final { note-test bs {std::__debug::bitset = {[0] = 1, [5] = 1, [7] = 1}} } }
49 std::deque
<std::string
> deq
;
52 // { dg-final { note-test deq {std::__debug::deque with 2 elements = {"one", "two"}} } }
54 std::deque
<std::string
>::iterator deqiter
= deq
.begin();
55 // { dg-final { note-test deqiter {"one"} } }
57 std::list
<std::string
> lst
;
60 // { dg-final { note-test lst {std::__debug::list = {[0] = "one", [1] = "two"}} } }
62 std::list
<std::string
>::iterator lstiter
= lst
.begin();
64 // { dg-final { note-test lstiter {"one"}} }
66 std::list
<std::string
>::const_iterator lstciter
= lst
.begin();
68 // { dg-final { note-test lstciter {"one"}} }
70 std::map
<std::string
, int> mp
;
72 // { dg-final { note-test mp {std::__debug::map with 1 element = {["zardoz"] = 23}} } }
74 std::map
<std::string
, int>::iterator mpiter
= mp
.begin();
75 // { dg-final { note-test mpiter {{first = "zardoz", second = 23}} } }
81 const std::set
<int> const_intset
= intset
;
82 // { dg-final { note-test const_intset {std::__debug::set with 2 elements = {[0] = 2, [1] = 3}} } }
84 std::set
<std::string
> sp
;
85 sp
.insert("clownfish");
87 // { dg-final { note-test sp {std::__debug::set with 2 elements = {[0] = "barrel", [1] = "clownfish"}} } }
89 std::set
<std::string
>::const_iterator spciter
= sp
.begin();
90 // { dg-final { note-test spciter {"barrel"} } }
92 __gnu_cxx::slist
<int> sll
;
95 // { dg-final { note-test sll {__gnu_cxx::slist = {[0] = 47, [1] = 23}} } }
100 std::vector
<int>::iterator viter0
;
101 // { dg-final { note-test viter0 {non-dereferenceable iterator for std::vector} } }
102 std::vector
<int>::iterator viter1
= v
.begin();
103 std::vector
<int>::iterator viter2
= viter1
+ 1;
105 // { dg-final { note-test v {std::__debug::vector of length 1, capacity 2 = {2}} } }
106 // { dg-final { note-test viter1 {invalid iterator} } }
107 // { dg-final { note-test viter2 {invalid iterator} } }
108 std::vector
<int>::iterator viter3
= v
.begin();
109 // { dg-final { note-test viter3 {2} } }
111 __gnu_cxx::slist
<int>::iterator slliter
= sll
.begin();
112 // { dg-final { note-test slliter {47} } }
115 return 0; // Mark SPOT
118 // { dg-final { gdb-test SPOT } }