summaryrefslogtreecommitdiffstats
path: root/pidl/tests/samba3-srv.pl
blob: d1e2bc9545af450c9bec0c2d437c813bb426091c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl
# (C) 2008 Jelmer Vernooij <jelmer@samba.org>
# Published under the GNU General Public License
use strict;
use warnings;

use Test::More tests => 1;
use FindBin qw($RealBin);
use lib "$RealBin";
use Util;
use Parse::Pidl::Util qw(MyDumper has_property);
use Parse::Pidl::Samba3::ServerNDR qw(DeclLevel);

my $l = { TYPE => "DATA", DATA_TYPE => "uint32" }; 
my $e = { FILE => "foo", LINE => 0, PROPERTIES => { }, TYPE => "uint32",
          LEVELS => [ $l ] };

is("uint32_t", DeclLevel($e, 0));