diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-08-05 13:43:49 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-09-28 23:06:52 +0200 |
commit | fcee50b9c9ca157c839df5761ca0a2f87fc1ac33 (patch) | |
tree | 243538855f19031e2fe1264781105ed2a2af4b45 /pidl/tests/parse_idl.pl | |
parent | d4636c47c70d4ef5441a33cc6ef5eb469cf11bff (diff) | |
download | samba-fcee50b9c9ca157c839df5761ca0a2f87fc1ac33.tar.gz |
pidl: add support for pointers in typedefs
metze
Diffstat (limited to 'pidl/tests/parse_idl.pl')
-rwxr-xr-x | pidl/tests/parse_idl.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pidl/tests/parse_idl.pl b/pidl/tests/parse_idl.pl index e06526dd1eb..14138a37b89 100755 --- a/pidl/tests/parse_idl.pl +++ b/pidl/tests/parse_idl.pl @@ -158,6 +158,7 @@ is_deeply($x, [ { 'DATA' => [ { 'TYPE' => 'TYPEDEF', 'NAME' => 'y', + 'POINTERS' => 0, 'DATA' => { 'TYPE' => 'STRUCT', 'NAME' => 'x', @@ -180,6 +181,7 @@ is_deeply($x, [ { 'DATA' => [ { 'TYPE' => 'TYPEDEF', 'NAME' => 'y', + 'POINTERS' => 0, 'DATA' => { 'TYPE' => 'STRUCT', 'ELEMENTS' => [], @@ -202,6 +204,7 @@ is_deeply($x, [ { 'DATA' => [ { 'TYPE' => 'TYPEDEF', 'NAME' => 'y', + 'POINTERS' => 0, 'DATA' => { 'TYPE' => 'BITMAP', 'NAME' => 'x', @@ -225,6 +228,7 @@ is_deeply($x, [ { 'DATA' => [ { 'TYPE' => 'TYPEDEF', 'NAME' => 'y', + 'POINTERS' => 0, 'DATA' => { 'TYPE' => 'UNION', 'NAME' => 'x', |