debian packaging update: switch from test to check target for tests

This commit is contained in:
Juergen E. Fischer 2012-04-14 11:22:00 +02:00
parent a1b132486b
commit 0a2fdb6d08
2 changed files with 5 additions and 2 deletions

3
debian/changelog vendored
View File

@ -12,8 +12,9 @@ qgis (1.9.90) UNRELEASED; urgency=low
* add mssqlprovider plugin
* copyright & policy update (synced from debiangis)
* run crssync in postinst
* switch from test with check target instead of test
-- Jürgen E. Fischer <jef@norbit.de> Tue, 03 Apr 2012 00:20:18 +0200
-- Jürgen E. Fischer <jef@norbit.de> Sat, 14 Apr 2012 10:39:28 +0200
qgis (1.8.0) UNRELEASED; urgency=low

4
debian/rules vendored
View File

@ -104,7 +104,9 @@ build-stamp: debian/build/CMakeCache.txt
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# Code to run the package test suite - and ignore the outcome for now
LD_LIBRARY_PATH=$(PWD)/debian/build/output/lib:$(LD_LIBRARY_PATH) $(MAKE) -C debian/build test || true
LD_LIBRARY_PATH=$(PWD)/debian/build/output/lib:$(LD_LIBRARY_PATH) $(MAKE) -C debian/build check || true
else
echo Skipping tests.
endif
touch $@