libstdc++: Improve types used as iterators in testsuite
authorJonathan Wakely <jwakely@redhat.com>
Fri, 24 Sep 2021 12:23:34 +0000 (13:23 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 28 Sep 2021 19:22:51 +0000 (20:22 +0100)
Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
libstdc++-v3/ChangeLog:

* testsuite/25_algorithms/copy/34595.cc: Add missing operation
for type used as an iterator.
* testsuite/25_algorithms/unique_copy/check_type.cc: Likewise.

libstdc++-v3/testsuite/25_algorithms/copy/34595.cc
libstdc++-v3/testsuite/25_algorithms/unique_copy/check_type.cc

index c534eeb..513425a 100644 (file)
@@ -27,11 +27,12 @@ class Counting_output_iterator
 public:
   Counting_output_iterator() : c(0) {}
   Counting_output_iterator& operator++() { return *this; }
+  Counting_output_iterator operator++(int) { return *this; }
   Counting_output_iterator& operator*() { return *this; }
-  
+
   template <typename T>
   void operator=(const T&) { ++c; }
-  
+
   std::size_t current_counter() const { return c; }
 };
 
index af86548..27b3579 100644 (file)
 using __gnu_test::input_iterator_wrapper;
 using __gnu_test::output_iterator_wrapper;
 
-struct S1 { };
+template<typename T>
+struct iter_facade
+{
+  T& operator++();
+  T operator++(int);
+  T& operator*() const;
+};
+
+struct S1 : iter_facade<S1> { };
 
-struct S2
+struct S2 : iter_facade<S2>
 {
   S2(const S1&) {}
 };
 
-bool 
+bool
 operator==(const S1&, const S1&) {return true;}
 
-struct X1 { };
+struct X1 : iter_facade<X1>  { };
 
-struct X2
+struct X2 : iter_facade<X2>
 {
   X2(const X1&) {}
 };
 
-bool 
+bool
 predicate(const X1&, const X1&) {return true;}
 
-output_iterator_wrapper<S2> 
+output_iterator_wrapper<S2>
 test1(input_iterator_wrapper<S1>& s1, output_iterator_wrapper<S2>& s2)
 { return std::unique_copy(s1, s1, s2); }