mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 16:32:16 +00:00
libs/python/test/Jamfile.v2:
* add dynamically-linked embedding test
* fix builtin_converters test so it can work (BBv1 allowed the
duplication of main target names; BBv2 does not)
libs/python/test/import_.cpp: move some more of the Python code within
a handle_exception callback so at least we can better diagnose
failures.
[SVN r37214]
67 lines
1.8 KiB
C++
67 lines
1.8 KiB
C++
// Copyright Stefan Seefeld 2007.
|
|
// 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)
|
|
|
|
#include <boost/python.hpp>
|
|
#include <boost/bind.hpp>
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
namespace bpl = boost::python;
|
|
|
|
void import_test( char** argv )
|
|
{
|
|
// Retrieve the main module
|
|
bpl::object main = bpl::import("__main__");
|
|
|
|
// Retrieve the main module's namespace
|
|
bpl::object global(main.attr("__dict__"));
|
|
|
|
// Inject search path for import_ module
|
|
std::ostringstream script;
|
|
script << "import sys, os\n"
|
|
<< "path = os.path.dirname('" << argv[1] << "')\n"
|
|
<< "sys.path.insert(0, path)\n";
|
|
bpl::exec(bpl::str(script.str()), global, global);
|
|
|
|
// Retrieve the main module
|
|
bpl::object import_ = bpl::import("import_");
|
|
int value = bpl::extract<int>(import_.attr("value")) BOOST_EXTRACT_WORKAROUND;
|
|
std::cout << value << std::endl;
|
|
BOOST_TEST(value == 42);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
BOOST_TEST(argc == 2);
|
|
|
|
// Initialize the interpreter
|
|
Py_Initialize();
|
|
|
|
if (bpl::handle_exception(boost::bind(import_test, argv)))
|
|
{
|
|
if (PyErr_Occurred())
|
|
{
|
|
BOOST_ERROR("Python Error detected");
|
|
PyErr_Print();
|
|
}
|
|
else
|
|
{
|
|
BOOST_ERROR("A C++ exception was thrown for which "
|
|
"there was no exception handler registered.");
|
|
}
|
|
}
|
|
|
|
// Boost.Python doesn't support Py_Finalize yet.
|
|
// Py_Finalize();
|
|
return boost::report_errors();
|
|
}
|
|
|
|
// Including this file makes sure
|
|
// that on Windows, any crashes (e.g. null pointer dereferences) invoke
|
|
// the debugger immediately, rather than being translated into structured
|
|
// exceptions that can interfere with debugging.
|
|
#include "module_tail.cpp"
|