aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-07-10 00:14:16 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-07-10 00:14:16 +0200
commit25402dbdf304e25e6bbf92a6efda5f855c80303b (patch)
tree12f311075efa40345b44debe1861dfff352cabe2
parent362b6c71c2aebca8ffeef1718e7cd50e9563d65b (diff)
downloadsbotools2-25402dbdf304e25e6bbf92a6efda5f855c80303b.tar.xz
16-clean.t: test sboupgrade -d TRUE
-rwxr-xr-xt/16-clean.t11
1 files changed, 10 insertions, 1 deletions
diff --git a/t/16-clean.t b/t/16-clean.t
index c45fb92..f3737a3 100755
--- a/t/16-clean.t
+++ b/t/16-clean.t
@@ -11,7 +11,7 @@ use Test::Sbotools qw/ make_slackbuilds_txt set_distclean set_noclean set_lo sbo
use SBO::Lib;
use File::Temp 'tempdir';
-plan tests => 16;
+plan tests => 17;
my $sboname = "nonexistentslackbuild";
my $perf = "/usr/sbo/distfiles/perf.dummy";
@@ -93,3 +93,12 @@ set_lo "$RealBin/LO2";
sboupgrade qw/ -c TRUE nonexistentslackbuild /, { input => "y\ny", test => 0 };
ok (-e "/tmp/SBo/$sboname-1.1", "$sboname-1.1 exists when NOCLEAN set to true in sboupgrade.");
cleanup();
+
+# 17: sboupgrade -d TRUE
+set_lo "$RealBin/LO";
+sboinstall qw/ -r nonexistentslackbuild /, { test => 0 };
+set_lo "$RealBin/LO2";
+sboupgrade qw/ -d TRUE nonexistentslackbuild /, { input => "y\ny", test => 0 };
+ok (!-e $perf, "perf.dummy cleaned after upgrade with -d.");
+restore_perf_dummy();
+cleanup();