diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-04 13:57:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:35 -0500 |
commit | 5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0 (patch) | |
tree | a5464cdee1f79ca2fdb77c2cb1915d034134aaf9 /source4/build/pidl/tests | |
parent | 03cdfbe8ac68621d1dfa53164d095eb451793bc0 (diff) | |
download | samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.tar.gz samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.tar.bz2 samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.zip |
r7274: Move m4 files to seperate dir
(This used to be commit 0dda66f0e8e6ad37d731937af184a132bf3407b1)
Diffstat (limited to 'source4/build/pidl/tests')
-rwxr-xr-x | source4/build/pidl/tests/ndr_refptr.pl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source4/build/pidl/tests/ndr_refptr.pl b/source4/build/pidl/tests/ndr_refptr.pl index 8654174bfe..e8d434756e 100755 --- a/source4/build/pidl/tests/ndr_refptr.pl +++ b/source4/build/pidl/tests/ndr_refptr.pl @@ -499,3 +499,20 @@ Test::test_idl("refptr-top-push-double-fstnull", \%settings, /* Windows gives [client runtime error 0x6f4] */ '); + +Test::test_idl("ignore-ptr", \%settings, +' + [public] void echo_TestRef([in,ignore] uint16 *foo, [in] uint16 *bar); +', +' struct ndr_push *ndr = ndr_push_init(); + struct echo_TestRef r; + uint16_t v = 10; + r.in.foo = &v; + r.in.bar = &v; + + if (NT_STATUS_IS_OK(ndr_push_echo_TestRef(ndr, NDR_IN, &r))) + return 1; + + if (ndr->offset != 4) + return 2; +'); |