Removed old map tests
[libcds.git] / tests / unit / map2 / map_find_string.cpp
diff --git a/tests/unit/map2/map_find_string.cpp b/tests/unit/map2/map_find_string.cpp
deleted file mode 100644 (file)
index ad77d93..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
-    This file is a part of libcds - Concurrent Data Structures library
-
-    (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
-
-    Source code repo: http://github.com/khizmax/libcds/
-    Download: http://sourceforge.net/projects/libcds/files/
-    
-    Redistribution and use in source and binary forms, with or without
-    modification, are permitted provided that the following conditions are met:
-
-    * Redistributions of source code must retain the above copyright notice, this
-      list of conditions and the following disclaimer.
-
-    * Redistributions in binary form must reproduce the above copyright notice,
-      this list of conditions and the following disclaimer in the documentation
-      and/or other materials provided with the distribution.
-
-    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
-*/
-
-#include "map2/map_find_string.h"
-
-namespace map2 {
-    CPPUNIT_TEST_SUITE_REGISTRATION( Map_find_string );
-
-    void Map_find_string::generateSequence()
-    {
-        size_t nPercent = c_nPercentExists;
-
-        if ( nPercent > 100 )
-            nPercent = 100;
-        else if ( nPercent < 1 )
-            nPercent = 1;
-
-        std::vector<std::string> const& arrString = CppUnitMini::TestCase::getTestStrings();
-        size_t nSize = arrString.size();
-        if ( nSize > c_nMapSize )
-            nSize = c_nMapSize;
-        m_Arr.reserve( nSize );
-
-        nSize = 0;
-        for ( size_t i = 0; i < nSize && i < arrString.size(); ++i ) {
-            bool bExists = CppUnitMini::Rand( 100 ) <= nPercent;
-            m_Arr.push_back( { &arrString.at(i), bExists } );
-            if ( bExists )
-                ++nSize;
-        }
-        c_nMapSize = nSize;
-    }
-
-    void Map_find_string::setUpParams( const CppUnitMini::TestCfg& cfg )
-    {
-        c_nThreadCount = cfg.getSizeT("ThreadCount", c_nThreadCount );
-        c_nMapSize = cfg.getSizeT("MapSize", c_nMapSize);
-        c_nPercentExists = cfg.getSizeT("PercentExists", c_nPercentExists);
-        c_nPassCount = cfg.getSizeT("PassCount", c_nPassCount);
-        c_nMaxLoadFactor = cfg.getSizeT("MaxLoadFactor", c_nMaxLoadFactor);
-        c_bPrintGCState = cfg.getBool("PrintGCStateFlag", c_bPrintGCState );
-
-        c_nCuckooInitialSize = cfg.getSizeT("CuckooInitialSize", c_nCuckooInitialSize);
-        c_nCuckooProbesetSize = cfg.getSizeT("CuckooProbesetSize", c_nCuckooProbesetSize);
-        c_nCuckooProbesetThreshold = cfg.getSizeT("CuckooProbesetThreshold", c_nCuckooProbesetThreshold);
-
-        c_nFeldmanMap_HeadBits = cfg.getSizeT("FeldmanMapHeadBits", c_nFeldmanMap_HeadBits);
-        c_nFeldmanMap_ArrayBits = cfg.getSizeT("FeldmanMapArrayBits", c_nFeldmanMap_ArrayBits);
-
-        if ( c_nThreadCount == 0 )
-            c_nThreadCount = std::thread::hardware_concurrency();
-
-        CPPUNIT_MSG( "Generating test data...\n");
-        cds::OS::Timer    timer;
-        generateSequence();
-        CPPUNIT_MSG( "   Duration=" << timer.duration() << "\n" );
-
-    }
-} // namespace map2