]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/ext/vstring/hash/wchar_t/1.cc
Use effective-target instead of -std options
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / vstring / hash / wchar_t / 1.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
bde8d7f7
PC
2// { dg-require-string-conversions "" }
3
818ab71a 4// Copyright (C) 2011-2016 Free Software Foundation, Inc.
bde8d7f7
PC
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 3, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
2328b1de 13// but WITHOUT ANY WARRANTY; without even the implied warranty of
bde8d7f7
PC
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
20
21#include <ext/vstring.h>
22#include <unordered_map>
23#include <testsuite_hooks.h>
24
25// libstdc++/47773
26void test01()
27{
28 bool test __attribute__((unused)) = true;
29
30 typedef __gnu_cxx::__wvstring vstring_t;
31 typedef std::unordered_map<vstring_t, int> map_t;
32
33 map_t mymap;
34
35 mymap.insert(std::make_pair(L"hello", 10));
36 mymap.insert(std::make_pair(L"hi", 20));
37
38 VERIFY( mymap.size() == 2 );
39
11514ce0
PC
40 map_t::const_iterator imap1 = mymap.begin();
41 map_t::const_iterator imap2 = mymap.begin();
42 ++imap2;
43
44 VERIFY( ((imap1->first == L"hello" && imap1->second == 10
45 && imap2->first == L"hi" && imap2->second == 20)
46 || (imap1->first == L"hi" && imap1->second == 20
47 && imap2->first == L"hello" && imap2->second == 10)) );
bde8d7f7
PC
48}
49
50int main()
51{
52 test01();
53 return 0;
54}