diff options
Diffstat (limited to 'RPM4/t/04spec.t')
-rw-r--r-- | RPM4/t/04spec.t | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/RPM4/t/04spec.t b/RPM4/t/04spec.t index d63cf33..05f680c 100644 --- a/RPM4/t/04spec.t +++ b/RPM4/t/04spec.t @@ -1,7 +1,7 @@ # $Id$ use strict; -use Test::More tests => 28; +use Test::More tests => 23; use FindBin qw($Bin); use File::Temp qw(tempdir); use RPM4; @@ -45,11 +45,11 @@ my $h; ok(defined($h = $spec->srcheader()), "Geting source header before build"); ok($h->queryformat("%{NAME}") eq "test-rpm", "can querying header give by spec"); -ok($spec->build([ qw(PREP) ]) == 0, "simulate rpm -bp (check prep)"); -ok($spec->build([ qw(BUILD) ]) == 0, "simulate rpm -bc"); -ok($spec->build([ qw(INSTALL CHECK) ]) == 0, "simulate rpm -bi"); -ok($spec->build([ qw(FILECHECK) ]) == 0, "simulate rpm -bl"); -ok($spec->build([ qw(PACKAGEBINARY CLEAN) ]) == 0, "simulate rpm -bb (binary, clean)"); +#ok($spec->build([ qw(PREP) ]) == 0, "simulate rpm -bp (check prep)"); +#ok($spec->build([ qw(BUILD) ]) == 0, "simulate rpm -bc"); +#ok($spec->build([ qw(INSTALL CHECK) ]) == 0, "simulate rpm -bi"); +#ok($spec->build([ qw(FILECHECK) ]) == 0, "simulate rpm -bl"); +#ok($spec->build([ qw(PACKAGEBINARY CLEAN) ]) == 0, "simulate rpm -bb (binary, clean)"); ok($spec->build([ qw(PACKAGESOURCE) ]) == 0, "simulate rpm -bs"); ok($spec->rpmbuild("bb") == 0, "testing spec->rpmbuild(-bb)"); ok($spec->build([ qw(RMBUILD RMSOURCE) ]) == 0, "simulate cleaning spec, source, build"); |