2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00

Correct testing bugs:

either changing assert(...) or BOOST_ASSERT(...) to BOOST_TEST
    (in my code only)

    or adding "return boost::report_errors();" where it was clearly
    missing (and a pure bug, in anyone's code).


[SVN r37057]
This commit is contained in:
Dave Abrahams
2007-02-24 22:40:59 +00:00
parent 67236ffbad
commit 08a6f35ec2
5 changed files with 10 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
// Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <boost/python/module.hpp>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/assert.hpp>
#include <boost/python/def.hpp>
@@ -86,3 +87,5 @@ BOOST_PYTHON_MODULE(dict_ext)
def("work_with_dict", work_with_dict);
def("test_templates", test_templates);
}
#include "module_tail.cpp"

View File

@@ -9,6 +9,7 @@
#include <boost/python/list.hpp>
#include <boost/python/make_function.hpp>
#include <boost/lexical_cast.hpp>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/assert.hpp>
#include "test_class.hpp"
@@ -143,3 +144,4 @@ BOOST_PYTHON_MODULE(list_ext)
;
}
#include "module_tail.cpp"

View File

@@ -9,6 +9,7 @@
#include <boost/python/call_method.hpp>
#include <boost/ref.hpp>
#include <boost/utility.hpp>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/assert.hpp>
using namespace boost::python;

View File

@@ -7,6 +7,8 @@
#include <boost/python/def.hpp>
#include <boost/python/class.hpp>
#include <boost/python/str.hpp>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/assert.hpp>
using namespace boost::python;
@@ -74,3 +76,4 @@ BOOST_PYTHON_MODULE(str_ext)
def("work_with_string",work_with_string);
}
#include "module_tail.cpp"

View File

@@ -11,6 +11,7 @@
#include <boost/ref.hpp>
#include <boost/utility.hpp>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/assert.hpp>
using namespace boost::python;