summaryrefslogtreecommitdiff
path: root/test/DOMTSHandler.pm
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-25 09:04:31 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-25 09:04:31 +0000
commit0c4def895208ab6c4f5077da50f2235a8882e840 (patch)
tree2ca835091f57262e147512e50ac12f9364a6b73f /test/DOMTSHandler.pm
parent2803afb2bcf521af8963d9b3494c02c9c906d69b (diff)
downloadlibdom-0c4def895208ab6c4f5077da50f2235a8882e840.tar.gz
libdom-0c4def895208ab6c4f5077da50f2235a8882e840.tar.bz2
allow tests to use the unsigned long type for testing dom_ulong interfaces
Diffstat (limited to 'test/DOMTSHandler.pm')
-rw-r--r--test/DOMTSHandler.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/DOMTSHandler.pm b/test/DOMTSHandler.pm
index 55f30bc..09b657e 100644
--- a/test/DOMTSHandler.pm
+++ b/test/DOMTSHandler.pm
@@ -31,7 +31,7 @@ our %special_type = (
# Some of the type are not defined now!
boolean => "bool ",
int => "int32_t ",
- "unsigned long" => "uint32_t ",
+ "unsigned long" => "dom_ulong ",
DOMString => "dom_string *",
List => "list *",
Collection => "list *",
@@ -101,6 +101,7 @@ our %no_unref = (
"boolean" => 1,
"int" => 1,
"unsigned int" => 1,
+ "unsigned long" => 1,
"List" => 1,
"Collection" => 1,
);