Imported Upstream version 3.3.0
[debian/amanda] / installcheck / Amanda_Changer_compat.pl
index fc6d9ad0831054bd3979720bb310ffc77484389a..b2e311e13f60ff4dd1a20db2387150e86f67ba98 100644 (file)
@@ -16,7 +16,7 @@
 # Contact information: Zmanda Inc, 465 S. Mathilda Ave., Suite 300
 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
 
-use Test::More tests => 30;
+use Test::More tests => 31;
 use File::Path;
 use strict;
 use warnings;
@@ -197,6 +197,8 @@ if ($cfg_result != $CFGERR_OK) {
 my $chg = Amanda::Changer->new();
 die($chg) if $chg->isa("Amanda::Changer::Error");
 
+is($chg->have_inventory(), '', "changer have inventory");
+
 try_run_changer(
     sub { $chg->load(label => 'TAPE-01', res_cb => $check_res_cb); },
     undef,
@@ -346,6 +348,7 @@ if ($cfg_result != $CFGERR_OK) {
     die(join "\n", @errors);
 }
 
+$chg->quit();
 $chg = Amanda::Changer->new();
 die($chg) if $chg->isa("Amanda::Changer::Error");
 
@@ -444,6 +447,7 @@ die($chg) if $chg->isa("Amanda::Changer::Error");
     $get_info->();
     Amanda::MainLoop::run();
 }
+$chg->quit();
 
 # test two simultaneous invocations of info()
 
@@ -534,6 +538,7 @@ sub test_except_slots {
 }
 test_except_slots(\&Amanda::MainLoop::quit);
 Amanda::MainLoop::run();
+$chg->quit();
 
 unlink($changer_filename);
 unlink($result_file);