2013-05-14 23:42:12 +00:00
|
|
|
## Copyright (C) 2005-2011, 2013 Red Hat, Inc.
|
|
|
|
##
|
|
|
|
## This library is free software; you can redistribute it and/or
|
|
|
|
## modify it under the terms of the GNU Lesser General Public
|
|
|
|
## License as published by the Free Software Foundation; either
|
|
|
|
## version 2.1 of the License, or (at your option) any later version.
|
|
|
|
##
|
|
|
|
## This library is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
## Lesser General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU Lesser General Public
|
|
|
|
## License along with this library. If not, see
|
|
|
|
## <http://www.gnu.org/licenses/>.
|
2011-07-28 18:56:24 +00:00
|
|
|
|
2012-04-27 16:06:34 +00:00
|
|
|
EXAMPLE_DIR = $(datadir)/doc/libvirt-python-$(VERSION)/examples
|
2006-02-14 14:30:42 +00:00
|
|
|
|
|
|
|
PYTESTS= \
|
2006-02-23 10:31:23 +00:00
|
|
|
basic.py \
|
2006-02-23 11:26:17 +00:00
|
|
|
create.py \
|
2006-02-28 12:17:00 +00:00
|
|
|
uuid.py \
|
2006-03-29 13:33:37 +00:00
|
|
|
error.py \
|
|
|
|
node.py
|
2006-02-14 14:30:42 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = $(PYTESTS)
|
|
|
|
|
|
|
|
if WITH_PYTHON
|
|
|
|
tests: $(PYTESTS)
|
|
|
|
@echo "## running Python regression tests"
|
2006-02-21 13:23:16 +00:00
|
|
|
-@(PYTHONPATH="..:../.libs:../src/.libs:$(srcdir)/../src:$$PYTHONPATH";\
|
2006-02-14 14:30:42 +00:00
|
|
|
export PYTHONPATH; \
|
|
|
|
LD_LIBRARY_PATH="$(top_builddir)/src/.libs:$$LD_LIBRARY_PATH" ; \
|
|
|
|
export LD_LIBRARY_PATH; \
|
|
|
|
for test in $(PYTESTS) ; \
|
|
|
|
do log=`$(PYTHON) $(srcdir)/$$test` ; \
|
|
|
|
if [ "`echo $$log | grep OK`" = "" ] ; then \
|
|
|
|
echo "-- $$test" ; echo "$$log" ; fi ; done)
|
|
|
|
else
|
|
|
|
tests:
|
|
|
|
endif
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.pyc core
|
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
$(mkinstalldirs) $(DESTDIR)$(EXAMPLE_DIR)
|
|
|
|
-(for test in $(PYTESTS); \
|
2010-01-15 10:09:01 +00:00
|
|
|
do $(INSTALL) -m 0644 $(srcdir)/$$test $(DESTDIR)$(EXAMPLE_DIR) ; done)
|
2006-02-14 14:30:42 +00:00
|
|
|
|
2007-11-15 13:04:28 +00:00
|
|
|
uninstall-local:
|
|
|
|
for test in $(PYTESTS); do rm -f $(DESTDIR)$(EXAMPLE_DIR)/$$test; done
|