diff --git a/test/Jamfile b/test/Jamfile index 72d60d37..7f088cf7 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -115,7 +115,7 @@ bpl-test crossmod_exception [ bpl-test keywords : keywords.cpp keywords_test.py ] -[ python-extension builtin_converters_ext : test_builtin_converters.cpp /boost/python//boost_python ] +[ python-extension builtin_converters_ext : builtin_converters.cpp /boost/python//boost_python ] [ bpl-test builtin_converters : test_builtin_converters.py builtin_converters_ext ] [ bpl-test test_pointer_adoption ] diff --git a/test/SConscript b/test/SConscript index 3a0fcf06..eaeefaca 100644 --- a/test/SConscript +++ b/test/SConscript @@ -116,7 +116,7 @@ else: test = env.BoostRunPythonScript('test_builtin_converters.py') Depends( test, - env.PythonExtension('builtin_converters_ext', ['test_builtin_converters.cpp']) + env.PythonExtension('builtin_converters_ext', ['builtin_converters.cpp']) ) tests+=test test = env.BoostRunPythonScript('map_indexing_suite.py') diff --git a/test/test_builtin_converters.cpp b/test/builtin_converters.cpp similarity index 100% rename from test/test_builtin_converters.cpp rename to test/builtin_converters.cpp