1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
use strict;
sub gen {
my ($domain) = @_;
my $messages;
unless (open(LOCALE, "locale|")) {
doskip();
}
while (<LOCALE>) {
if (/^LC_MESSAGES=\"(.*)\"$/) {
$messages = $1;
last;
} elsif (/^LC_MESSAGES=(.*)$/) {
$messages = $1;
}
}
close LOCALE;
if ($? != 0) {
doskip();
}
if ($messages eq 'C') {
skip("cannot run test in the C locale", 0);
exit 0;
}
if ($messages eq 'POSIX') {
skip("cannot run test in the POSIX locale", 0);
exit 0;
}
mkdir "test_data/" . $messages, 0755 unless (-d "test_data/" . $messages);
mkdir "test_data/" . $messages . "/LC_MESSAGES", 0755
unless (-d "test_data/" . $messages . "/LC_MESSAGES");
unless (-r ("test_data/" . $messages . "/LC_MESSAGES/" . $domain . ".mo")) {
system "msgfmt", "-o", "test_data/" . $messages . "/LC_MESSAGES/" .
$domain . ".mo",
"test_data/" . $domain . ".po";
if ($? != 0) {
doskip();
}
}
}
sub doskip {
skip("could not generate test data, skipping test", 0);
exit 0;
}
1;
|