summaryrefslogtreecommitdiffstats
path: root/pidl/tests/cutil.pl
diff options
context:
space:
mode:
Diffstat (limited to 'pidl/tests/cutil.pl')
-rwxr-xr-xpidl/tests/cutil.pl21
1 files changed, 21 insertions, 0 deletions
diff --git a/pidl/tests/cutil.pl b/pidl/tests/cutil.pl
new file mode 100755
index 0000000..78c8bce
--- /dev/null
+++ b/pidl/tests/cutil.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/perl
+# (C) 2007 Jelmer Vernooij <jelmer@samba.org>
+# Published under the GNU General Public License
+use strict;
+use warnings;
+
+use Test::More tests => 7;
+use FindBin qw($RealBin);
+use lib "$RealBin";
+use Util;
+use Parse::Pidl::Util qw(MyDumper);
+use Parse::Pidl::CUtil qw(get_pointer_to get_value_of);
+
+is("&foo", get_pointer_to("foo"));
+is("&(&foo)", get_pointer_to(get_pointer_to("foo")));
+is("*foo", get_pointer_to("**foo"));
+is("foo", get_pointer_to("*foo"));
+
+is("foo", get_value_of("&foo"));
+is("*foo", get_value_of("foo"));
+is("**foo", get_value_of("*foo"));