You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2005/12/31 00:37:14 UTC

svn commit: r360198 - /incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp

Author: sebor
Date: Fri Dec 30 15:37:11 2005
New Revision: 360198

URL: http://svn.apache.org/viewcvs?rev=360198&view=rev
Log:
2005-12-30  Martin Sebor  <se...@roguewave.com>

	STDCXX-4
	* 25.lower.bound.cpp: New test exercising lib.lower.bound, including
	STDCXX-89.

Added:
    incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp   (with props)

Added: incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp
URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp?rev=360198&view=auto
==============================================================================
--- incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp (added)
+++ incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp Fri Dec 30 15:37:11 2005
@@ -0,0 +1,262 @@
+/***************************************************************************
+ *
+ * 25.lower.bound.cpp - test exercising 25.3.3.1 [lib.lower.bound]
+ *
+ * $Id$
+ *
+ ***************************************************************************
+ *
+ * Copyright (c) 1994-2005 Quovadx,  Inc., acting through its  Rogue Wave
+ * Software division. Licensed under the Apache License, Version 2.0 (the
+ * "License");  you may  not use this file except  in compliance with the
+ * License.    You    may   obtain   a   copy   of    the   License    at
+ * http://www.apache.org/licenses/LICENSE-2.0.    Unless   required    by
+ * applicable law  or agreed to  in writing,  software  distributed under
+ * the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR
+ * CONDITIONS OF  ANY KIND, either  express or implied.  See  the License
+ * for the specific language governing permissions  and limitations under
+ * the License.
+ * 
+ **************************************************************************/
+
+#include <rw/_config.h>
+
+#if defined (__IBMCPP__) && !defined (_RWSTD_NO_IMPLICIT_INCLUSION)
+  // disable implicit inclusion to work around a limitation
+  // of IBM VisualAge 5.0 (see PR #26959)
+#  define _RWSTD_NO_IMPLICIT_INCLUSION 
+#endif
+
+#include <algorithm>
+#include <cstring>
+
+#include <alg_test.h>
+#include <driver.h>
+
+/**************************************************************************/
+
+struct Y: X { };
+
+inline bool operator< (const X &lhs, const Y &rhs)
+{
+    // cast the right-hand-side operand to its base
+    // before invoking the base class operator
+    return lhs < (X&)rhs;
+}
+
+/**************************************************************************/
+
+// predicate used as the Compare argument to lower_bound()
+struct LessThan
+{
+    static std::size_t funcalls_;
+
+    LessThan (int /* dummy */, int /* dummy */) {
+        funcalls_ = 0;
+    }
+
+    class ConvertibleToBool {
+        bool result_;
+    public:
+        ConvertibleToBool (bool res): result_ (res) { /* empty */ }
+        operator bool() const { return result_; }
+    };
+
+    // return a type other than bool but one that is implicitly
+    // convertible to bool to detect incorrect assumptions
+    ConvertibleToBool operator() (const X &lhs, const Y &rhs) {
+        ++funcalls_;
+        return ConvertibleToBool (lhs < rhs);
+    }
+
+private:
+    void operator= (LessThan&);   // not assignable
+};
+
+std::size_t LessThan::funcalls_;
+
+/**************************************************************************/
+
+template <class ForwardIterator>
+void test_lower_bound (int                    line,
+                       const char            *src_str,
+                       char                   val_char,
+                       std::size_t            result_off,
+                       std::size_t            ncomp,
+                       const ForwardIterator*,
+                       const char            *itname,
+                       bool                   predicate)
+{
+    RW_ASSERT (0 != src_str);
+
+    const std::size_t nsrc = std::strlen (src_str);
+    X* const xsrc = X::from_char (src_str, nsrc);
+
+    if (nsrc < result_off)
+        result_off = nsrc;
+
+    // construct the source range to pass to the algorithm
+    const ForwardIterator first (xsrc,        xsrc,        xsrc + nsrc);
+    const ForwardIterator last  (xsrc + nsrc, xsrc + nsrc, xsrc + nsrc);
+
+    // construct the object to pass to the algorithm
+    Y value;
+    value.val_ = val_char;
+
+    // construct the Compare function object to pass to the algorithm
+    // when `predicate' is true
+    const LessThan comp (0, 0 /* dummy arguments */);
+
+    // reset the counter of invocations of X::operator<()
+    X::n_total_op_lt_ = 0;
+
+    // invoke the appropriate form of the algorithm, storing
+    // the resturned value
+    const ForwardIterator result = predicate
+        ? std::lower_bound (first, last, value, comp)
+        : std::lower_bound (first, last, value);
+
+    // verify correctness
+    const std::size_t off = std::size_t (result.cur_ - xsrc);
+
+    rw_assert (off == result_off, 0, line,
+               "lower_bound(%s = \"%s\", ...%{?}%#c%{;}) ==> "
+               "first + %zu, got %zu",
+               itname, src_str, !predicate, val_char,
+               off, result_off);
+
+    // verify complexity
+    const std::size_t funcalls = predicate
+        ? LessThan::funcalls_ : X::n_total_op_lt_;
+
+    rw_assert (off == result_off, 0, line,
+               "lower_bound(%s = \"%s\", ...%{?}%#c%{;}) complexity: "
+               "invoked predicate at most %zu times, got %zu",
+               itname, src_str, !predicate, val_char,
+               funcalls, ncomp);
+
+    delete[] xsrc;
+}
+
+/**************************************************************************/
+
+template <class ForwardIterator>
+void test_lower_bound (const ForwardIterator*,
+                       const char           *itname,
+                       bool                  predicate)
+{
+#define TEST(str, val, off, comp) \
+    test_lower_bound (__LINE__, str, val, std::size_t (off), \
+                      std::size_t (comp), (ForwardIterator*)0, \
+                      itname, predicate)
+
+    rw_info (0, 0, 0, "std::lower_bound (%s, %1$s, const X&%{?}, %s%{;})",
+             itname, predicate, "LessThan");
+
+    //    +--------------- source sequence
+    //    |     +--------- value argument
+    //    |     |   +----- offset of the resturned iterator, -1 for end
+    //    |     |   |  +-- complexity: at most (log(last - first) + 1)
+    //    |     |   |  |   comparisons (or applications of the predicate)
+    //    |     |   |  |
+    //    V     V   V  V
+    TEST ("",  'a', 0, 0);
+    TEST ("a", 'a', 0, 1);
+    TEST ("a", 'b', 1, 1);
+    TEST ("b", 'a', 0, 1);
+
+    TEST ("aa", 'a', 0, 1);
+    TEST ("ab", 'a', 0, 1);
+    TEST ("ab", 'b', 1, 2);
+    TEST ("bb", 'a', 0, 2);
+
+    TEST ("ace", 'a', 0, 1);
+    TEST ("ace", 'b', 1, 2);
+    TEST ("ace", 'c', 1, 2);
+    TEST ("ace", 'd', 2, 3);
+    TEST ("ace", 'e', 2, 3);
+    TEST ("ace", 'f', 3, 3);
+
+    TEST ("aceg", 'a', 0, 1);
+    TEST ("aceg", 'b', 1, 2);
+    TEST ("aceg", 'c', 1, 2);
+    TEST ("aceg", 'd', 2, 3);
+    TEST ("aceg", 'e', 2, 3);
+    TEST ("aceg", 'f', 3, 3);
+    TEST ("aceg", 'g', 3, 4);
+    TEST ("aceg", 'h', 4, 4);
+}
+
+/**************************************************************************/
+
+static int rw_opt_no_fwd_iter;
+static int rw_opt_no_bidir_iter;
+static int rw_opt_no_rnd_iter;
+static int rw_opt_no_predicate;
+
+
+static void
+test_lower_bound (bool predicate)
+{
+    rw_info (0, 0, 0, "template <class %s, class %s%{?}, class %s%{;}> "
+             "std::lower_bound (%1$s, %1$s, const X&%{?}, %3$s%{;})",
+             "ForwardIterator", "X", predicate, "Compare", predicate);
+
+    if (rw_opt_no_fwd_iter) {
+        rw_note (0, 0, 0, "ForwardIterator test disabled");
+    }
+    else {
+        test_lower_bound ((FwdIter<X>*)0, "ForwardIterator", predicate);
+    }
+
+    if (rw_opt_no_bidir_iter) {
+        rw_note (0, 0, 0, "BidirectionalIterator test disabled");
+    }
+    else {
+        test_lower_bound ((BidirIter<X>*)0, "BidirectionalIterator", predicate);
+    }
+
+    if (rw_opt_no_fwd_iter) {
+        rw_note (0, 0, 0, "RandomAccessIterator test disabled");
+    }
+    else {
+        test_lower_bound ((RandomAccessIter<X>*)0, "RandomAccessIterator",
+                          predicate);
+    }
+}
+
+/**************************************************************************/
+
+static int
+run_test (int, char*[])
+{
+    test_lower_bound (false);
+
+    if (rw_opt_no_predicate) {
+        rw_note (0, __FILE__, __LINE__,
+                 "test of the Predicate form of std::lower_bound disabled");
+    }
+    else {
+        test_lower_bound (true);
+    }
+
+    return 0;
+}
+
+/**************************************************************************/
+
+int main (int argc, char *argv[])
+{
+    return rw_test (argc, argv, __FILE__,
+                    "lib.lower.bound",
+                    0 /* no comment */,
+                    run_test,
+                    "|-no-Predicate# "
+                    "|-no-ForwardIterator# "
+                    "|-no-BidirectionalIterator# "
+                    "|-no-RandomAccessIterator#",
+                    &rw_opt_no_predicate,
+                    &rw_opt_no_fwd_iter,
+                    &rw_opt_no_bidir_iter,
+                    &rw_opt_no_rnd_iter);
+}

Propchange: incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/stdcxx/trunk/tests/algorithms/25.lower.bound.cpp
------------------------------------------------------------------------------
    svn:keywords = Id