diff options
Diffstat (limited to 'pidl/tests/ndr.pl')
-rwxr-xr-x | pidl/tests/ndr.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pidl/tests/ndr.pl b/pidl/tests/ndr.pl index 504b7ec8de..53b8cb89e3 100755 --- a/pidl/tests/ndr.pl +++ b/pidl/tests/ndr.pl @@ -4,7 +4,7 @@ use strict; use warnings; -use Test::More tests => 46; +use Test::More tests => 47; use FindBin qw($RealBin); use lib "$RealBin"; use Util; @@ -480,6 +480,7 @@ $ne = ParseElement($e, undef); is($ne->{REPRESENTATION_TYPE}, "uint8"); is(align_type("hyper"), 8); +is(align_type("double"), 8); is(align_type("uint32"), 4); is(align_type("uint16"), 2); is(align_type("uint8"), 1); |