diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-25 03:04:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:43 -0500 |
commit | 7717f180ca2f908e1b3258355520719991215050 (patch) | |
tree | cca55b2debbe63fdf39d6810ad7987af28ffc04a /source4/pidl/tests/ndr_align.pl | |
parent | 620d375320e143abcf6775a392f9bde3146f2baa (diff) | |
download | samba-7717f180ca2f908e1b3258355520719991215050.tar.gz samba-7717f180ca2f908e1b3258355520719991215050.tar.bz2 samba-7717f180ca2f908e1b3258355520719991215050.zip |
r12470: Add helper module for pidl tests
Convert other pidl tests to use Test::More and run them from 'make test'
(This used to be commit 3a57d29a62112ab654e290ccc985fba7f67664c5)
Diffstat (limited to 'source4/pidl/tests/ndr_align.pl')
-rwxr-xr-x | source4/pidl/tests/ndr_align.pl | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/source4/pidl/tests/ndr_align.pl b/source4/pidl/tests/ndr_align.pl index 073ce5ce2f..7ca180cf20 100755 --- a/source4/pidl/tests/ndr_align.pl +++ b/source4/pidl/tests/ndr_align.pl @@ -3,9 +3,13 @@ # (C) 2005 Jelmer Vernooij. Published under the GNU GPL use strict; -use Test::Simple tests => 1; +use Test::More tests => 5 * 8; +use FindBin qw($RealBin); +use lib "$RealBin/../lib"; +use lib "$RealBin"; +use Util qw(test_samba4_ndr); -Parse::Pidl::Test::test_idl('align-uint8-uint16', \%settings, +test_samba4_ndr('align-uint8-uint16', ' typedef [public] struct { uint8 x; @@ -30,7 +34,7 @@ Parse::Pidl::Test::test_idl('align-uint8-uint16', \%settings, return 2; '); -Parse::Pidl::Test::test_idl('align-uint8-uint32', \%settings, +test_samba4_ndr('align-uint8-uint32', ' typedef [public] struct { uint8 x; @@ -56,7 +60,7 @@ Parse::Pidl::Test::test_idl('align-uint8-uint32', \%settings, '); -Parse::Pidl::Test::test_idl('align-uint8-hyper', \%settings, +test_samba4_ndr('align-uint8-hyper', ' typedef [public] struct { uint8 x; @@ -82,7 +86,7 @@ Parse::Pidl::Test::test_idl('align-uint8-hyper', \%settings, return 2; '); -Parse::Pidl::Test::test_idl('noalignflag-uint8-uint16', \%settings, +test_samba4_ndr('noalignflag-uint8-uint16', ' typedef [public] struct { uint8 x; @@ -109,7 +113,7 @@ Parse::Pidl::Test::test_idl('noalignflag-uint8-uint16', \%settings, return 2; '); -Parse::Pidl::Test::test_idl('align-blob-align2', \%settings, +test_samba4_ndr('align-blob-align2', ' typedef [public] struct { uint8 x; |