~ubuntu-branches/ubuntu/oneiric/software-properties/oneiric-security

« back to all changes in this revision

Viewing changes to tests/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt, Mohamed Amine IL Idrissi, Michael Vogt
  • Date: 2011-07-22 19:11:26 UTC
  • Revision ID: james.westby@ubuntu.com-20110722191126-xoi15h2c116uzlgu
Tags: 0.81
[ Mohamed Amine IL Idrissi ]
* Redesigned the Updates tab according to
  https://wiki.ubuntu.com/SoftwareUpdateHandling#settings (LP:
  #351484, #357676, #253412)

[ Michael Vogt ]
* add dbus/polkit backend, based on 
  lp:~kubuntu-packagers/software-properties/dbusworker
* use new dbus backend
* automatically run tests at bzr-buildpackage time

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make
 
2
 
 
3
all: check
 
4
 
 
5
check:
 
6
        set -e; \
 
7
        find . -name 'test_*.py' | \
 
8
        while read file; do \
 
9
            if [ -x $$file ]; then \
 
10
                echo "Testing $$file $$PWD"; \
 
11
                python $$file; \
 
12
            fi \
 
13
        done
 
14
 
 
15