~ubuntu-branches/ubuntu/utopic/debhelper/utopic-proposed

« back to all changes in this revision

Viewing changes to t/buildsystems/buildsystem_tests

  • Committer: Steve Langasek
  • Author(s): Martin Pitt
  • Date: 2011-10-16 06:51:20 UTC
  • mfrom: (1.4.35 sid)
  • Revision ID: steve.langasek@canonical.com-20111016065120-3qbjooj2ai6a783a
Tags: 8.9.8ubuntu1
merge 8.9.8 from Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
2
 
3
 
use Test::More tests => 292;
 
3
use Test::More tests => 297;
4
4
 
5
5
use strict;
6
6
use warnings;
256
256
test_check_auto_buildable($bs{autoconf}, "configure", { configure => 1 });
257
257
 
258
258
touch "$tmpdir/CMakeLists.txt";
259
 
test_check_auto_buildable($bs{cmake}, "CMakeLists.txt", { configure => 1 });
 
259
test_check_auto_buildable($bs{cmake}, "CMakeLists.txt", { configure => 1, clean => 1 });
260
260
 
261
261
touch "$tmpdir/Makefile.PL";
262
262
test_check_auto_buildable($bs{perl_makemaker}, "Makefile.PL", { configure => 1 });
614
614
        $(MAKE)
615
615
%:
616
616
        @dh_clean > /dev/null 2>&1
617
 
        @+dh --buildsystem=makefile --after=dh_auto_configure --until=dh_auto_build $@
 
617
        @+dh --buildsystem=makefile --after=dh_auto_configure --until=dh_auto_build $@ 2>/dev/null
618
618
        @dh_clean > /dev/null 2>&1
619
619
EOF
620
620
test_is_parallel( do_rules_for_parallel("build", "include debian/rules"),