diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-07-09 15:56:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:19:28 -0500 |
commit | b98373d574f43fb5d088a59acf1c81ea0b311977 (patch) | |
tree | 0b9f8cce2c87bd792abc6a5bce911e0f3fb66072 /source4/build/pidl/tests | |
parent | fa1445f4bc962efb3e639d3a4e345b1db14155b7 (diff) | |
download | samba-b98373d574f43fb5d088a59acf1c81ea0b311977.tar.gz samba-b98373d574f43fb5d088a59acf1c81ea0b311977.tar.bz2 samba-b98373d574f43fb5d088a59acf1c81ea0b311977.zip |
r8265: Fixes to the pidl test suite.
(This used to be commit 1235333afbfab643ea35e9b43f6142da3f6a41d7)
Diffstat (limited to 'source4/build/pidl/tests')
-rwxr-xr-x | source4/build/pidl/tests/ndr_align.pl | 16 | ||||
-rwxr-xr-x | source4/build/pidl/tests/ndr_alloc.pl | 16 | ||||
-rwxr-xr-x | source4/build/pidl/tests/ndr_array.pl | 8 | ||||
-rwxr-xr-x | source4/build/pidl/tests/ndr_refptr.pl | 50 | ||||
-rwxr-xr-x | source4/build/pidl/tests/ndr_simple.pl | 8 | ||||
-rwxr-xr-x | source4/build/pidl/tests/ndr_string.pl | 10 |
6 files changed, 48 insertions, 60 deletions
diff --git a/source4/build/pidl/tests/ndr_align.pl b/source4/build/pidl/tests/ndr_align.pl index 2cd4bde185..da994224eb 100755 --- a/source4/build/pidl/tests/ndr_align.pl +++ b/source4/build/pidl/tests/ndr_align.pl @@ -3,17 +3,15 @@ # (C) 2005 Jelmer Vernooij. Published under the GNU GPL use strict; -use FindBin qw($RealBin); -use lib "$RealBin/../.."; -use pidl::test; +use Parse::Pidl::Test; -my %settings = Test::GetSettings(@ARGV); +my %settings = Parse::Pidl::Test::GetSettings(@ARGV); $settings{'IDL-Arguments'} = ['--quiet', '--parse', '--parser=ndr_test.c', '--header=ndr_test.h']; $settings{'IncludeFiles'} = ['ndr_test.h']; $settings{'ExtraFiles'} = ['ndr_test.c']; -Test::test_idl('align-uint8-uint16', \%settings, +Parse::Pidl::Test::test_idl('align-uint8-uint16', \%settings, ' typedef [public] struct { uint8 x; @@ -38,7 +36,7 @@ Test::test_idl('align-uint8-uint16', \%settings, return 2; '); -Test::test_idl('align-uint8-uint32', \%settings, +Parse::Pidl::Test::test_idl('align-uint8-uint32', \%settings, ' typedef [public] struct { uint8 x; @@ -64,7 +62,7 @@ Test::test_idl('align-uint8-uint32', \%settings, '); -Test::test_idl('align-uint8-hyper', \%settings, +Parse::Pidl::Test::test_idl('align-uint8-hyper', \%settings, ' typedef [public] struct { uint8 x; @@ -90,7 +88,7 @@ Test::test_idl('align-uint8-hyper', \%settings, return 2; '); -Test::test_idl('noalignflag-uint8-uint16', \%settings, +Parse::Pidl::Test::test_idl('noalignflag-uint8-uint16', \%settings, ' typedef [public] struct { uint8 x; @@ -117,7 +115,7 @@ Test::test_idl('noalignflag-uint8-uint16', \%settings, return 2; '); -Test::test_idl('align-blob-align2', \%settings, +Parse::Pidl::Test::test_idl('align-blob-align2', \%settings, ' typedef [public] struct { uint8 x; diff --git a/source4/build/pidl/tests/ndr_alloc.pl b/source4/build/pidl/tests/ndr_alloc.pl index f0f366a947..4f6eddbfb9 100755 --- a/source4/build/pidl/tests/ndr_alloc.pl +++ b/source4/build/pidl/tests/ndr_alloc.pl @@ -3,18 +3,16 @@ # (C) 2005 Jelmer Vernooij. Published under the GNU GPL use strict; -use FindBin qw($RealBin); -use lib "$RealBin/../.."; -use pidl::test; +use Parse::Pidl::Test; -my %settings = Test::GetSettings(@ARGV); +my %settings = Parse::Pidl::Test::GetSettings(@ARGV); $settings{'IDL-Arguments'} = ['--quiet', '--parse', '--parser=ndr_test.c', '--header=ndr_test.h']; $settings{'IncludeFiles'} = ['ndr_test.h']; $settings{'ExtraFiles'} = ['ndr_test.c']; # Check that an outgoing scalar pointer is allocated correctly -Test::test_idl("alloc-scalar", \%settings, +Parse::Pidl::Test::test_idl("alloc-scalar", \%settings, ' typedef struct { uint8 *x; @@ -39,7 +37,7 @@ Test::test_idl("alloc-scalar", \%settings, ); # Check that an outgoing buffer pointer is allocated correctly -Test::test_idl("alloc-buffer", \%settings, +Parse::Pidl::Test::test_idl("alloc-buffer", \%settings, ' typedef struct { uint8 data; @@ -68,7 +66,7 @@ Test::test_idl("alloc-buffer", \%settings, ); # Check that ref pointers aren't allocated by default -Test::test_idl("ref-noalloc-null", \%settings, +Parse::Pidl::Test::test_idl("ref-noalloc-null", \%settings, ' [public] void TestAlloc([in,ref] uint8 *t); ',' @@ -84,7 +82,7 @@ Test::test_idl("ref-noalloc-null", \%settings, ); # Check that ref pointers aren't allocated by default -Test::test_idl("ref-noalloc", \%settings, +Parse::Pidl::Test::test_idl("ref-noalloc", \%settings, ' [public] void TestAlloc([in,ref] uint8 *t); ',' @@ -104,7 +102,7 @@ Test::test_idl("ref-noalloc", \%settings, ); # Check that an outgoing ref pointer is allocated correctly -Test::test_idl("ref-alloc", \%settings, +Parse::Pidl::Test::test_idl("ref-alloc", \%settings, ' [public] void TestAlloc([in,ref] uint8 *t); ',' diff --git a/source4/build/pidl/tests/ndr_array.pl b/source4/build/pidl/tests/ndr_array.pl index 3012868315..d486308339 100755 --- a/source4/build/pidl/tests/ndr_array.pl +++ b/source4/build/pidl/tests/ndr_array.pl @@ -4,16 +4,14 @@ # Published under the GNU General Public License use strict; -use FindBin qw($RealBin); -use lib "$RealBin/../.."; -use pidl::test; +use Parse::Pidl::Test; -my %settings = Test::GetSettings(@ARGV); +my %settings = Parse::Pidl::Test::GetSettings(@ARGV); $settings{'IDL-Arguments'} = ['--quiet', '--parse', '--parser=ndr_test.c', '--header=ndr_test.h']; $settings{'IncludeFiles'} = ['ndr_test.h']; $settings{'ExtraFiles'} = ['ndr_test.c']; -Test::test_idl( +Parse::Pidl::Test::test_idl( # Name 'Fixed-Array', diff --git a/source4/build/pidl/tests/ndr_refptr.pl b/source4/build/pidl/tests/ndr_refptr.pl index e8d434756e..8344661ad3 100755 --- a/source4/build/pidl/tests/ndr_refptr.pl +++ b/source4/build/pidl/tests/ndr_refptr.pl @@ -5,16 +5,14 @@ # Published under the GNU General Public License. use strict; -use FindBin qw($RealBin); -use lib "$RealBin/../.."; -use pidl::test; +use Parse::Pidl::Test; -my %settings = Test::GetSettings(@ARGV); +my %settings = Parse::Pidl::Test::GetSettings(@ARGV); $settings{'IDL-Arguments'} = ['--quiet', '--parse', '--parser=ndr_test.c', '--header=ndr_test.h']; $settings{'IncludeFiles'} = ['ndr_test.h']; $settings{'ExtraFiles'} = ['ndr_test.c']; -Test::test_idl("noptr-push", \%settings, +Parse::Pidl::Test::test_idl("noptr-push", \%settings, ' typedef struct { uint16 x; } xstruct; @@ -43,7 +41,7 @@ Test::test_idl("noptr-push", \%settings, } '); -Test::test_idl("ptr-embedded-push", \%settings, +Parse::Pidl::Test::test_idl("ptr-embedded-push", \%settings, ' typedef struct { uint16 *x; } xstruct; @@ -70,7 +68,7 @@ Test::test_idl("ptr-embedded-push", \%settings, return 4; '); -Test::test_idl("ptr-embedded-push-null", \%settings, +Parse::Pidl::Test::test_idl("ptr-embedded-push-null", \%settings, ' typedef struct { uint16 *x; } xstruct; @@ -93,7 +91,7 @@ Test::test_idl("ptr-embedded-push-null", \%settings, return 3; '); -Test::test_idl("refptr-embedded-push", \%settings, +Parse::Pidl::Test::test_idl("refptr-embedded-push", \%settings, ' typedef struct { [ref] uint16 *x; @@ -121,7 +119,7 @@ Test::test_idl("refptr-embedded-push", \%settings, return 4; '); -Test::test_idl("refptr-embedded-push-null", \%settings, +Parse::Pidl::Test::test_idl("refptr-embedded-push-null", \%settings, ' typedef struct { [ref] uint16 *x; @@ -139,7 +137,7 @@ Test::test_idl("refptr-embedded-push-null", \%settings, /* Windows gives [client runtime error 0x6f4] */ '); -Test::test_idl("ptr-top-push", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-push", \%settings, ' typedef struct { uint16 x; @@ -164,7 +162,7 @@ Test::test_idl("ptr-top-push", \%settings, return 3; '); -Test::test_idl("ptr-top-push-null", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-push-null", \%settings, ' typedef struct { uint16 x; @@ -184,7 +182,7 @@ Test::test_idl("ptr-top-push-null", \%settings, '); -Test::test_idl("refptr-top-push", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-push", \%settings, ' typedef struct { uint16 x; @@ -209,7 +207,7 @@ Test::test_idl("refptr-top-push", \%settings, return 3; '); -Test::test_idl("refptr-top-push-null", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-push-null", \%settings, ' typedef struct { uint16 x; @@ -229,7 +227,7 @@ Test::test_idl("refptr-top-push-null", \%settings, '); -Test::test_idl("uniqueptr-top-push", \%settings, +Parse::Pidl::Test::test_idl("uniqueptr-top-push", \%settings, ' typedef struct { uint16 x; } xstruct; @@ -257,7 +255,7 @@ Test::test_idl("uniqueptr-top-push", \%settings, return 4; '); -Test::test_idl("uniqueptr-top-push-null", \%settings, +Parse::Pidl::Test::test_idl("uniqueptr-top-push-null", \%settings, ' typedef struct { uint16 x; } xstruct; @@ -281,7 +279,7 @@ Test::test_idl("uniqueptr-top-push-null", \%settings, '); -Test::test_idl("ptr-top-out-pull", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-out-pull", \%settings, ' typedef struct { uint16 x; @@ -308,7 +306,7 @@ Test::test_idl("ptr-top-out-pull", \%settings, return 3; '); -Test::test_idl("ptr-top-out-pull-null", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-out-pull-null", \%settings, ' typedef struct { uint16 x; @@ -331,7 +329,7 @@ Test::test_idl("ptr-top-out-pull-null", \%settings, '); -Test::test_idl("refptr-top-out-pull", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-out-pull", \%settings, ' typedef struct { uint16 x; @@ -358,7 +356,7 @@ Test::test_idl("refptr-top-out-pull", \%settings, return 3; '); -Test::test_idl("refptr-top-out-pull-null", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-out-pull-null", \%settings, ' typedef struct { uint16 x; @@ -381,7 +379,7 @@ Test::test_idl("refptr-top-out-pull-null", \%settings, '); -Test::test_idl("ptr-top-push-double", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-push-double", \%settings, ' [public] void echo_TestRef([in] uint16 **foo); ', @@ -405,7 +403,7 @@ Test::test_idl("ptr-top-push-double", \%settings, return 4; '); -Test::test_idl("ptr-top-push-double-sndnull", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-push-double-sndnull", \%settings, ' [public] void echo_TestRef([in] uint16 **foo); ', @@ -425,7 +423,7 @@ Test::test_idl("ptr-top-push-double-sndnull", \%settings, return 3; '); -Test::test_idl("ptr-top-push-double-fstnull", \%settings, +Parse::Pidl::Test::test_idl("ptr-top-push-double-fstnull", \%settings, ' [public] void echo_TestRef([in] uint16 **foo); ', @@ -441,7 +439,7 @@ Test::test_idl("ptr-top-push-double-fstnull", \%settings, '); -Test::test_idl("refptr-top-push-double", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-push-double", \%settings, ' [public] void echo_TestRef([in,ref] uint16 **foo); ', @@ -465,7 +463,7 @@ Test::test_idl("refptr-top-push-double", \%settings, return 4; '); -Test::test_idl("refptr-top-push-double-sndnull", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-push-double-sndnull", \%settings, ' [public] void echo_TestRef([in,ref] uint16 **foo); ', @@ -485,7 +483,7 @@ Test::test_idl("refptr-top-push-double-sndnull", \%settings, return 3; '); -Test::test_idl("refptr-top-push-double-fstnull", \%settings, +Parse::Pidl::Test::test_idl("refptr-top-push-double-fstnull", \%settings, ' [public] void echo_TestRef([in,ref] uint16 **foo); ', @@ -500,7 +498,7 @@ Test::test_idl("refptr-top-push-double-fstnull", \%settings, '); -Test::test_idl("ignore-ptr", \%settings, +Parse::Pidl::Test::test_idl("ignore-ptr", \%settings, ' [public] void echo_TestRef([in,ignore] uint16 *foo, [in] uint16 *bar); ', diff --git a/source4/build/pidl/tests/ndr_simple.pl b/source4/build/pidl/tests/ndr_simple.pl index b1930c45b6..7d48c9f4d7 100755 --- a/source4/build/pidl/tests/ndr_simple.pl +++ b/source4/build/pidl/tests/ndr_simple.pl @@ -4,16 +4,14 @@ # Published under the GNU General Public License use strict; -use FindBin qw($RealBin); -use lib "$RealBin/../.."; -use pidl::test; +use Parse::Pidl::Test; -my %settings = Test::GetSettings(@ARGV); +my %settings = Parse::Pidl::Test::GetSettings(@ARGV); $settings{'IDL-Arguments'} = ['--quiet', '--parse', '--parser=ndr_test.c', '--header=ndr_test.h']; $settings{'IncludeFiles'} = ['ndr_test.h']; $settings{'ExtraFiles'} = ['ndr_test.c']; -Test::test_idl( +Parse::Pidl::Test::test_idl( # Name 'UInt8', diff --git a/source4/build/pidl/tests/ndr_string.pl b/source4/build/pidl/tests/ndr_string.pl index c011a29028..ad8db912d7 100755 --- a/source4/build/pidl/tests/ndr_string.pl +++ b/source4/build/pidl/tests/ndr_string.pl @@ -4,17 +4,15 @@ # Published under the GNU General Public License use strict; -use FindBin qw($RealBin); -use lib "$RealBin/../.."; -use pidl::test; +use Parse::Pidl::Test; -my %settings = Test::GetSettings(@ARGV); +my %settings = Parse::Pidl::Test::GetSettings(@ARGV); $settings{'IDL-Arguments'} = ['--quiet', '--parse', '--parser=ndr_test.c', '--header=ndr_test.h']; $settings{'IncludeFiles'} = ['ndr_test.h']; $settings{'ExtraFiles'} = ['ndr_test.c']; -Test::test_idl("string-pull-empty", \%settings, +Parse::Pidl::Test::test_idl("string-pull-empty", \%settings, ' [public] void TestString([in,flag(STR_ASCII|LIBNDR_FLAG_STR_SIZE4)] string data);', ' uint8_t data[] = { 0x00, 0x00, 0x00, 0x00 }; @@ -33,7 +31,7 @@ Test::test_idl("string-pull-empty", \%settings, return 3; '); -Test::test_idl("string-ascii-pull", \%settings, +Parse::Pidl::Test::test_idl("string-ascii-pull", \%settings, ' [public] void TestString([in,flag(STR_ASCII|LIBNDR_FLAG_STR_SIZE4)] string data); ', |