Index: run-local =================================================================== --- run-local (revision 4650) +++ run-local (working copy) @@ -22,7 +22,9 @@ cd .. # The user may have already run ./configure and make if [ ! -f config.status ]; then - ./configure + ./configure --enable-dev-mode + make menuselect.makeopts + menuselect/menuselect --enable DONT_OPTIMIZE --enable TEST_FRAMEWORK fi make make install samples DESTDIR="$HERE/astroot" Index: lib/python/asterisk/test_config.py =================================================================== --- lib/python/asterisk/test_config.py (revision 4650) +++ lib/python/asterisk/test_config.py (working copy) @@ -203,6 +203,9 @@ return False module = "%s/%s.so" % (Dependency.ast.directories["astmoddir"], name) + if "AST_TEST_ROOT" in os.environ: + module = "%s/%s" % (os.environ["AST_TEST_ROOT"], module) + if os.path.exists(module): return True