]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/set_symmetric_difference/1.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / set_symmetric_difference / 1.cc
CommitLineData
0e994557
PC
1// Copyright (C) 2005 Free Software Foundation, Inc.
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 2, 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 COPYING. If not, write to the Free
83f51799 16// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
0e994557
PC
17// USA.
18
19// 25.3.5.5 [lib.set.symmetric.difference]
20
21#include <algorithm>
22#include <testsuite_hooks.h>
23#include <testsuite_iterators.h>
24
25using __gnu_test::test_container;
26using __gnu_test::input_iterator_wrapper;
27using __gnu_test::output_iterator_wrapper;
28using std::set_symmetric_difference;
29
30typedef test_container<int, input_iterator_wrapper> Icontainer;
31typedef test_container<int, output_iterator_wrapper> Ocontainer;
32
33void
34test1()
35{
36 int array1[1], array2[1];
37 Icontainer con1(array1, array1);
38 Icontainer con2(array1, array1);
39 Ocontainer con3(array2, array2);
40 VERIFY(set_symmetric_difference(con1.begin(), con1.end(), con2.begin(),
41 con2.end(), con3.begin()).ptr == array2);
42}
43
44void
45test2()
46{
47 int array1[] = {1};
48 int array2[] = {0};
49 Icontainer con1(array1, array1);
50 Icontainer con2(array1, array1 + 1);
51 Ocontainer con3(array2, array2 + 1);
52 VERIFY(set_symmetric_difference(con1.begin(), con1.end(), con2.begin(),
53 con2.end(), con3.begin()).ptr == array2 + 1);
54}
55
56void
57test3()
58{
59 int array1[] = {1};
60 int array2[] = {0};
61 Icontainer con1(array1, array1 + 1);
62 Icontainer con2(array1, array1);
63 Ocontainer con3(array2, array2 + 1);
64 VERIFY(set_symmetric_difference(con1.begin(), con1.end(), con2.begin(),
65 con2.end(), con3.begin()).ptr == array2 + 1);
66}
67
68void
69test4()
70{
71 int array1[]={0,1,1,2,4};
72 int array2[]={1,2,2,3};
73 int array3[5];
74 Icontainer con1(array1, array1 + 5);
75 Icontainer con2(array2, array2 + 4);
76 Ocontainer con3(array3, array3 + 5);
77 VERIFY(set_symmetric_difference(con1.begin(), con1.end(), con2.begin(),
78 con2.end(), con3.begin()).ptr == array3 + 5);
79 VERIFY(array3[0] == 0 && array3[1] == 1 && array3[2] == 2 &&
80 array3[3] == 3 && array3[4] == 4);
81}
82
83struct S
84{
85 int i;
86 int j;
87 S() {}
88 S(int in)
89 {
90 if(in > 0)
91 {
92 i = in;
93 j = 1;
94 }
95 else
96 {
97 i = -in;
98 j = 0;
99 }
100 }
101};
102
103bool
104operator<(const S& s1, const S& s2)
105{ return s1.i < s2.i; }
106
107typedef test_container<S, input_iterator_wrapper> SIcontainer;
108typedef test_container<S, output_iterator_wrapper> SOcontainer;
109
110void
111test5()
112{
113 S array1[] = { -1, -1, -2, -2, -4, -5};
114 S array2[] = { 1, 1, 1, 2, 3, 4};
115 S array3[4];
116 SIcontainer con1(array1, array1 + 6);
117 SIcontainer con2(array2, array2 + 6);
118 SOcontainer con3(array3, array3 + 4);
119 VERIFY(set_symmetric_difference(con1.begin(), con1.end(), con2.begin(),
120 con2.end(), con3.begin()).ptr == array3 + 4);
121 VERIFY(array3[0].j == 1 && array3[1].j == 0 && array3[2].j == 1 &&
122 array3[3].j == 0);
123}
124
125int
126main()
127{
128 test1();
129 test2();
130 test3();
131 test4();
132 test5();
133}
134