diff --git a/libs/python/numpy/test/Jamfile b/libs/python/numpy/test/Jamfile new file mode 100644 index 00000000..1e712918 --- /dev/null +++ b/libs/python/numpy/test/Jamfile @@ -0,0 +1,26 @@ +import testing ; +import python ; + +use-project /boost/numpy : ../src ; +project /boost/numpy/test + : requirements + # Why isn't this provided by 'using python' ? + #/usr/include/python2.7 + ; + +rule numpy-test ( name : sources * : requirements * ) +{ + # local s ; + sources ?= $(name).py $(name)_mod.cpp ; + return [ testing.make-test run-pyd : $(sources) /boost/numpy//boost_numpy + : $(requirements) : $(name) ] ; +} + + +test-suite numpy + : + +[ numpy-test templates ] +[ numpy-test ufunc ] + + ;