aboutsummaryrefslogtreecommitdiffstats
path: root/isocheck.pl
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-02-26 16:16:51 +0000
committerRomain d'Alverny <rda@mageia.org>2012-02-26 16:16:51 +0000
commit57bb09a84636453e9251d352ff7d123340d9a77c (patch)
treeafe005d6d1782642be813395a9022b87b99974a6 /isocheck.pl
parent1e56d4d23b16c9ab51315b9e492f8ee0c57cad90 (diff)
downloadisocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar
isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar.gz
isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar.bz2
isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.tar.xz
isocheck-57bb09a84636453e9251d352ff7d123340d9a77c.zip
Move Isocheck lib under MDK namespace, reorganize code in consequence.
Diffstat (limited to 'isocheck.pl')
-rw-r--r--isocheck.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/isocheck.pl b/isocheck.pl
index df94cb9..7c4f9b7 100644
--- a/isocheck.pl
+++ b/isocheck.pl
@@ -24,12 +24,12 @@ use 5.010;
use MDK::Common;
use TAP::Harness;
use TAP::Parser::Aggregator;
-use Isocheck;
+use MDK::ISOcheck;
my ($image_path) = @ARGV;
if (!defined $image_path) {
- print "Usage: ./test_iso.pl [ISO file]\nTry `./test_iso.pl --help' for more information.\n";
+ print "Usage: isocheck [ISO file]\nTry `./test_iso.pl --help' for more information.\n";
exit;
}
@@ -56,7 +56,7 @@ $aggregator->start;
$harness->aggregate_tests($aggregator, glob('image_tests/*.t'));
my $name = basename($image_path);
-my %info = Isocheck::parse_image_file_name($name);
+my %info = parse_image_file_name($name);
my @testfiles;
if (defined $info{variant} && $info{variant} =~ /^LiveCD/) {