~ubuntu-branches/ubuntu/maverick/telepathy-salut/maverick

« back to all changes in this revision

Viewing changes to rules/check.mak

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2008-09-17 19:03:47 UTC
  • mfrom: (7.1.8 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080917190347-fhkvbcpf8jp8wxkw
Tags: 0.3.3-2
* Use my debian.org address in Uploaders
* debian/patches/fix-activity-announce.patch:
  - Only announce OLPC activity we actually joined (dev.laptop.org #8441)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
# if the test fails, run it again at at least debug level 2
6
6
%.check: %
7
7
        @$(TESTS_ENVIRONMENT)                                   \
8
 
        $* ||                                                   \
 
8
        ./$* ||                                                 \
9
9
        $(TESTS_ENVIRONMENT)                                    \
10
10
        GIBBER_DEBUG=all                                        \
11
 
        $*
 
11
        ./$*
12
12
 
13
13
# run any given test in a loop
14
14
%.torture: %
15
15
        @for i in `seq 1 $(LOOPS)`; do                          \
16
16
        $(TESTS_ENVIRONMENT)                                    \
17
 
        $*; done
 
17
        ./$*; done
18
18
 
19
19
# run any given test in an infinite loop
20
20
%.forever: %
21
21
        @while true; do                                         \
22
22
        $(TESTS_ENVIRONMENT)                                    \
23
 
        $* || break; done
 
23
        ./$* || break; done
24
24
 
25
25
# valgrind any given test by running make test.valgrind
26
26
%.valgrind: %