From 1d3a535e536cfc09d7eda8e186df008a2eac5f7e Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Mon, 16 Apr 2012 23:58:34 -0400 Subject: [PATCH] switch to using LoadableModule instead of SharedLibrary for test Python modules --- libs/numpy/test/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/numpy/test/SConscript b/libs/numpy/test/SConscript index 808874b4..4c9630b1 100644 --- a/libs/numpy/test/SConscript +++ b/libs/numpy/test/SConscript @@ -23,7 +23,7 @@ def PythonUnitTest(env, script, dependencies): return run for name in ("ufunc", "templates", "ndarray", "indexing", "shapes"): - mod = test_env.SharedLibrary("%s_mod" % name, "%s_mod.cpp" % name, SHLIBPREFIX="") + mod = test_env.LoadableModule("%s_mod" % name, "%s_mod.cpp" % name, SHLIBPREFIX="") test.extend(PythonUnitTest(test_env, "%s.py" % name, mod)) Return("test")