~jamesodhunt/ubuntu/trusty/upstart/periodic-logrotate

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Dmitrijs Ledkovs
  • Date: 2013-11-13 02:58:16 UTC
  • Revision ID: dmitrijs.ledkovs@canonical.com-20131113025816-e6phml3uyn6fpi4c
Run as much test-suites as possible, before exiting with failure.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
ifeq (0,$(shell id -u))
29
29
        # WARNING: RUNNING TESTS AS ROOT IS KNOWN TO FAIL
30
30
        # WARNING: WILL RUN TESTS, BUT WILL IGNORE FAILURE
31
 
        -dh_auto_build -- check || { RET=$$?; find . -name "test-suite.log" -exec cat {} + ; exit $$RET;}
 
31
        -dh_auto_build -- -k check || { RET=$$?; find . -name "test-suite.log" -exec cat {} + ; exit $$RET;}
32
32
else
33
 
        dh_auto_build -- check || { RET=$$?; find . -name "test-suite.log" -exec cat {} + ; exit $$RET;}
 
33
        dh_auto_build -- -k check || { RET=$$?; find . -name "test-suite.log" -exec cat {} + ; exit $$RET;}
34
34
endif
35
35
endif
36
36