From 0a2fdb6d0801dc4186b207738d8d90d63a1872ca Mon Sep 17 00:00:00 2001 From: "Juergen E. Fischer" Date: Sat, 14 Apr 2012 11:22:00 +0200 Subject: [PATCH] debian packaging update: switch from test to check target for tests --- debian/changelog | 3 ++- debian/rules | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index a219399b33f..9d0d89c4700 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 03 Apr 2012 00:20:18 +0200 + -- Jürgen E. Fischer Sat, 14 Apr 2012 10:39:28 +0200 qgis (1.8.0) UNRELEASED; urgency=low diff --git a/debian/rules b/debian/rules index 8c227257b8a..a57cda4a459 100755 --- a/debian/rules +++ b/debian/rules @@ -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 $@