]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/net/internet/address/v4/comparisons.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / net / internet / address / v4 / comparisons.cc
CommitLineData
83ffe9cd 1// Copyright (C) 2015-2023 Free Software Foundation, Inc.
e5989e71
JW
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
7e8b87e9 18// { dg-do run { target c++14 } }
57028ff2 19// { dg-require-effective-target net_ts_ip }
630f2da9 20// { dg-add-options net_ts }
e5989e71
JW
21
22#include <experimental/internet>
23#include <testsuite_hooks.h>
24
25using std::experimental::net::ip::address_v4;
26
27void
28test01()
29{
e5989e71
JW
30 address_v4 addrs[] = {
31 address_v4::any(), address_v4::loopback(), address_v4::broadcast(),
32 address_v4{0x11001100}, address_v4{0xEFEFEFEF}
33 };
34
35 auto begin = std::begin(addrs);
36 auto end = std::end(addrs);
37 for (auto it = begin; it != end; ++it)
38 {
39 auto& a = *it;
40 VERIFY( a == a );
41 VERIFY( a <= a );
42 VERIFY( a >= a );
43 VERIFY( ! (a != a) );
44 VERIFY( ! (a < a) );
45 VERIFY( ! (a > a) );
46 }
47
48 std::sort(begin, end);
49
50 for (auto it = begin + 1; it != end; ++it)
51 {
52 auto& a = *it;
53 auto& b = *begin;
54 VERIFY( ! (a == b) );
55 VERIFY( a != b );
56 VERIFY( b < a );
57 VERIFY( b <= a );
58 VERIFY( a > b );
59 VERIFY( a >= b );
60 }
61}
62
63int
64main()
65{
66 test01();
67}