Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
cdada0b6
Commit
cdada0b6
authored
Jul 03, 2012
by
JINMEI Tatuya
Browse files
[master] added usual shared library trick for python tests
this should solve test failure on MacOS. committing at my discretion.
parent
4b90f2ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/python/isc/sysinfo/tests/Makefile.am
View file @
cdada0b6
...
...
@@ -2,6 +2,12 @@ PYCOVERAGE_RUN = @PYCOVERAGE_RUN@
PYTESTS
=
sysinfo_test.py
EXTRA_DIST
=
$(PYTESTS)
# If necessary (rare cases), explicitly specify paths to dynamic libraries
# required by loadable python modules.
if
SET_ENV_LIBRARY_PATH
LIBRARY_PATH_PLACEHOLDER
=
$(ENV_LIBRARY_PATH)
=
$(abs_top_builddir)
/src/lib/dns/.libs:
$(abs_top_builddir)
/src/lib/log/.libs:
$(abs_top_builddir)
/src/lib/config/.libs:
$(abs_top_builddir)
/src/lib/util/.libs:
$(abs_top_builddir)
/src/lib/datasrc/.libs:
$$$(ENV_LIBRARY_PATH)
endif
# test using command-line arguments, so use check-local target instead of TESTS
check-local
:
if
ENABLE_PYTHON_COVERAGE
...
...
@@ -11,6 +17,7 @@ if ENABLE_PYTHON_COVERAGE
endif
for
pytest
in
$(PYTESTS)
;
do
\
echo Running test
:
$$pytest ;
\
$(LIBRARY_PATH_PLACEHOLDER)
\
PYTHONPATH=$(COMMON_PYTHON_PATH)
\
$(PYCOVERAGE_RUN) $(abs_srcdir)/$$pytest || exit ;
\
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment