[Python-modules-commits] r8913 - in packages/python-psutil/trunk/debian (changelog rules)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Fri Jul 3 05:28:50 UTC 2009


    Date: Friday, July 3, 2009 @ 05:28:38
  Author: morph
Revision: 8913

* debian/rules
  - fixed bashism in selecting tests to run; thanks to Raphael Geissert for
    the report; Closes: #535411

Modified:
  packages/python-psutil/trunk/debian/changelog
  packages/python-psutil/trunk/debian/rules

Modified: packages/python-psutil/trunk/debian/changelog
===================================================================
--- packages/python-psutil/trunk/debian/changelog	2009-07-02 23:01:11 UTC (rev 8912)
+++ packages/python-psutil/trunk/debian/changelog	2009-07-03 05:28:38 UTC (rev 8913)
@@ -1,3 +1,11 @@
+python-psutil (0.1.2-2) UNRELEASED; urgency=low
+
+  * debian/rules
+    - fixed bashism in selecting tests to run; thanks to Raphael Geissert for
+      the report; Closes: #535411
+
+ -- Sandro Tosi <morph at debian.org>  Fri, 03 Jul 2009 07:25:10 +0200
+
 python-psutil (0.1.2-1) unstable; urgency=low
 
   * Initial release (Closes: #527594)

Modified: packages/python-psutil/trunk/debian/rules
===================================================================
--- packages/python-psutil/trunk/debian/rules	2009-07-02 23:01:11 UTC (rev 8912)
+++ packages/python-psutil/trunk/debian/rules	2009-07-03 05:28:38 UTC (rev 8913)
@@ -6,10 +6,10 @@
 	dh build
 
 	# run tests
-	for test in test/{dead_process.py,leak_test.py,test_memory_leaks.py,test_psutil.py} ;\
+	for test in dead_process.py leak_test.py test_memory_leaks.py test_psutil.py ;\
 	do \
-	    echo "running "$$test ; \
-	    PYTHONPATH=. python $$test ; \
+	    echo "running "test/$$test ; \
+	    PYTHONPATH=. python test/$$test ; \
 	done
 
 override_dh_installchangelogs:




More information about the Python-modules-commits mailing list