Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r55965 - branches/sredl_2009_05_proptree_update/libs/property_tree/test
From: sebastian.redl_at_[hidden]
Date: 2009-09-01 16:55:41


Author: cornedbee
Date: 2009-09-01 16:55:40 EDT (Tue, 01 Sep 2009)
New Revision: 55965
URL: http://svn.boost.org/trac/boost/changeset/55965

Log:
Remove test case for command line parser; the parser was removed.
Removed:
   branches/sredl_2009_05_proptree_update/libs/property_tree/test/test_cmdline_parser.cpp
Text files modified:
   branches/sredl_2009_05_proptree_update/libs/property_tree/test/Jamfile.v2 | 7 -------
   1 files changed, 0 insertions(+), 7 deletions(-)

Modified: branches/sredl_2009_05_proptree_update/libs/property_tree/test/Jamfile.v2
==============================================================================
--- branches/sredl_2009_05_proptree_update/libs/property_tree/test/Jamfile.v2 (original)
+++ branches/sredl_2009_05_proptree_update/libs/property_tree/test/Jamfile.v2 2009-09-01 16:55:40 EDT (Tue, 01 Sep 2009)
@@ -8,13 +8,6 @@
      [ run test_ini_parser.cpp ]
      [ run test_xml_parser_rapidxml.cpp ]
 
- # danieljames: The following tests were previously missing.
- # I don't know why.
-
      [ run test_multi_module1.cpp test_multi_module2.cpp ]
      #[ run test_registry_parser.cpp ]
-
- # The implementation for this seems to be missing:
- #
- # [ run test_cmdline_parser.cpp ]
 ;

Deleted: branches/sredl_2009_05_proptree_update/libs/property_tree/test/test_cmdline_parser.cpp
==============================================================================
--- branches/sredl_2009_05_proptree_update/libs/property_tree/test/test_cmdline_parser.cpp 2009-09-01 16:55:40 EDT (Tue, 01 Sep 2009)
+++ (empty file)
@@ -1,116 +0,0 @@
-// ----------------------------------------------------------------------------
-// Copyright (C) 2002-2006 Marcin Kalicinski
-//
-// Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file LICENSE_1_0.txt or copy at
-// http://www.boost.org/LICENSE_1_0.txt)
-//
-// For more information, see www.boost.org
-// ----------------------------------------------------------------------------
-
-#include "test_utils.hpp"
-#include <boost/property_tree/cmdline_parser.hpp>
-#include <boost/property_tree/info_parser.hpp>
-#include <vector>
-#include <string>
-
-namespace
-{
-
- // Test arguments
- char *argv[] =
- {
- "c:\\program.exe",
- "-Isrc/include1",
- " file2.cc ",
- "/L src/lib1",
- "-Lsrc/lib2",
- "/ooutput",
- "file1.cc",
- "-g",
- "-",
- "/",
- " /Isrc/include2 ",
- " file3.cc ",
- "-I src/include3 "
- };
-
- // Test arguments count
- const int argc = sizeof(argv) / sizeof(*argv);
-
-}
-
-template<class Ptree>
-void test_cmdline_parser()
-{
-
- using namespace boost::property_tree;
- typedef typename Ptree::key_type::value_type Ch;
- typedef std::basic_string<Ch> Str;
-
- // Prepare arguments of proper char type
- std::vector<Ch *> p;
- std::vector<Str> strings;
- strings.reserve(argc);
- for (int i = 0; i < argc; ++i)
- {
- strings.push_back(detail::widen<Ch>(argv[i]));
- p.push_back(const_cast<Ch *>(strings.back().c_str()));
- }
-
- Ptree pt1;
- read_cmdline<Ptree>(argc, &p.front(), detail::widen<Ch>("-/"), pt1);
-
- // Check indices
- BOOST_CHECK(pt1.template get_optional<Str>(detail::widen<Ch>("L.0")).get() == detail::widen<Ch>("src/lib1"));
- BOOST_CHECK(pt1.template get_optional<Str>(detail::widen<Ch>("L.1")).get() == detail::widen<Ch>("src/lib2"));
- BOOST_CHECK(!pt1.template get_optional<Str>(detail::widen<Ch>("L.2")));
- BOOST_CHECK(pt1.template get_optional<Str>(detail::widen<Ch>(".0")).get() == detail::widen<Ch>("c:\\program.exe"));
- BOOST_CHECK(pt1.template get_optional<Str>(detail::widen<Ch>(".1")).get() == detail::widen<Ch>("file2.cc"));
- BOOST_CHECK(pt1.template get_optional<Str>(detail::widen<Ch>(".2")).get() == detail::widen<Ch>("file1.cc"));
- BOOST_CHECK(pt1.template get_optional<Str>(detail::widen<Ch>(".3")).get() == detail::widen<Ch>("file3.cc"));
- BOOST_CHECK(!pt1.template get_optional<Str>(detail::widen<Ch>(".4")));
-
- // Check total sizes
- //std::cerr << total_size(pt1) << " " << total_data_size(pt1) << " " << total_keys_size(pt1) << "\n";
- BOOST_CHECK(total_size(pt1) == 21);
- BOOST_CHECK(total_data_size(pt1) == 130);
- BOOST_CHECK(total_keys_size(pt1) == 19);
-
- Ptree pt2;
- read_cmdline<Ptree>(argc, &p.front(), detail::widen<Ch>("-"), pt2);
-
- // Check indices
- BOOST_CHECK(pt2.template get_optional<Str>(detail::widen<Ch>("L.0")).get() == detail::widen<Ch>("src/lib2"));
- BOOST_CHECK(!pt2.template get_optional<Str>(detail::widen<Ch>("L.1")));
-
- // Check total sizes
- //std::cerr << total_size(pt2) << " " << total_data_size(pt2) << " " << total_keys_size(pt2) << "\n";
- BOOST_CHECK(total_size(pt2) == 19);
- BOOST_CHECK(total_data_size(pt2) == 135);
- BOOST_CHECK(total_keys_size(pt2) == 17);
-
- Ptree pt3;
- read_cmdline<Ptree>(argc, &p.front(), detail::widen<Ch>("/"), pt3);
-
- // Check indices
- BOOST_CHECK(pt3.template get_optional<Str>(detail::widen<Ch>("L.0")).get() == detail::widen<Ch>("src/lib1"));
- BOOST_CHECK(!pt3.template get_optional<Str>(detail::widen<Ch>("L.1")));
-
- // Check total sizes
- //std::cerr << total_size(pt3) << " " << total_data_size(pt3) << " " << total_keys_size(pt3) << "\n";
- BOOST_CHECK(total_size(pt3) == 19);
- BOOST_CHECK(total_data_size(pt3) == 149);
- BOOST_CHECK(total_keys_size(pt3) == 17);
-
-}
-
-int test_main(int argc, char *argv[])
-{
- using namespace boost::property_tree;
- test_cmdline_parser<ptree>();
-#ifndef BOOST_NO_CWCHAR
- test_cmdline_parser<wptree>();
-#endif
- return 0;
-}


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk