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

boost/numpy - enabled new unit tests in old SCons build system

This commit is contained in:
Jim Bosch
2011-08-25 23:32:43 +00:00
parent 7064cf3186
commit 32d2135462

View File

@@ -2,9 +2,9 @@ Import("boost_numpy_env")
test = []
for name in ("ufunc", "templates"):
for name in ("ufunc", "templates", "ndarray", "indexing", "shapes"):
mod = boost_numpy_env.SharedLibrary("%s_mod" % name, "%s_mod.cpp" % name, SHLIBPREFIX="",
LIBS="boost_python_numpy")
LIBS="boost_numpy")
test.extend(
boost_numpy_env.PythonUnitTest("%s.py" % name, mod)
)