mirror of
https://git.proxmox.com/git/libxdgmime-perl
synced 2025-08-16 05:15:34 +00:00

by running `h2xs -P -v 1.0 -F -DHAVE_MMAP -M '^XDG_' -Ofan Xdgmime xdgmime.h` and selectively adding changes. upstream xdgmime.h contains all functions also as defines (preprocessor mangling to add XDG_PREFIX to the function name) - thus all functions would also be added as constants, which leads to errors in the automatically generated tests. The functions need to be in EXPORT_OK, but not added to @names in Makefile.PL. Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
34 lines
832 B
Perl
34 lines
832 B
Perl
# Before 'make install' is performed this script should be runnable with
|
|
# 'make test'. After 'make install' it should work as 'perl Xdgmime.t'
|
|
|
|
#########################
|
|
|
|
# change 'tests => 2' to 'tests => last_test_to_print';
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More tests => 2;
|
|
BEGIN { use_ok('Xdgmime') };
|
|
|
|
|
|
my $fail = 0;
|
|
foreach my $constname (qw(
|
|
XDG_MIME_TYPE_EMPTY XDG_MIME_TYPE_TEXTPLAIN XDG_MIME_TYPE_UNKNOWN)) {
|
|
next if (eval "my \$a = $constname; 1");
|
|
if ($@ =~ /^Your vendor has not defined Xdgmime macro $constname/) {
|
|
print "# pass: $@";
|
|
} else {
|
|
print "# fail: $@";
|
|
$fail = 1;
|
|
}
|
|
|
|
}
|
|
|
|
ok( $fail == 0 , 'Constants' );
|
|
#########################
|
|
|
|
# Insert your test code below, the Test::More module is use()ed here so read
|
|
# its man page ( perldoc Test::More ) for help writing this test script.
|
|
|