]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/bitset/cons/dr396.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / bitset / cons / dr396.cc
CommitLineData
47cd1557
PC
1// 2009-09-23 Paolo Carlini <paolo.carlini@oracle.com>
2
a945c346 3// Copyright (C) 2008-2024 Free Software Foundation, Inc.
47cd1557
PC
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
47cd1557
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
47cd1557 19
7cc9022f
AA
20// { dg-require-effective-target hosted }
21
47cd1557
PC
22#include <bitset>
23#include <testsuite_hooks.h>
24
25// DR 396. what are characters zero and one.
26void test01()
27{
9daf8216 28 std::bitset<4> z1(std::string("bbab"), 0, std::string::npos, 'a', 'b');
47cd1557 29 VERIFY( z1.to_string('a', 'b') == "bbab" );
47cd1557 30
9daf8216 31 std::bitset<4> z2(std::string("11a1"), 0, std::string::npos, 'a');
47cd1557 32 VERIFY( z2.to_string('a') == "11a1" );
47cd1557 33
9daf8216 34 std::bitset<8> z3(std::string("babb"), 0, std::string::npos, 'a', 'b');
47cd1557 35 VERIFY( z3.to_string('a', 'b') == "aaaababb" );
47cd1557 36
9daf8216 37 std::bitset<8> z4(std::string("1a11"), 0, std::string::npos, 'a');
47cd1557 38 VERIFY( z4.to_string('a') == "aaaa1a11" );
47cd1557 39
9daf8216 40 std::bitset<2> z5(std::string("bbab"), 0, std::string::npos, 'a', 'b');
47cd1557 41 VERIFY( z5.to_string('a', 'b') == "bb" );
47cd1557 42
9daf8216 43 std::bitset<2> z6(std::string("11a1"), 0, std::string::npos, 'a');
47cd1557 44 VERIFY( z6.to_string('a') == "11" );
47cd1557
PC
45}
46
47int main()
48{
49 test01();
50 return 0;
51}