summaryrefslogtreecommitdiff
path: root/epan/oids_test.c
AgeCommit message (Collapse)AuthorFilesLines
2016-01-06oids_test.c - Fix compile errorMichael Mann1-1/+1
VS2010 didn't like the extra ; in the variable declarations (C99 issue?) Change-Id: Ic0fcd8342cdd3669172985a2d8023eb7b375c0b9 Reviewed-on: https://code.wireshark.org/review/13068 Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-01-19Convert OID APIs to use wmem.Michael Mann1-53/+78
There are a few oid functions that are only called in oids_test.c. I'll presume the APIs are used in proprietary dissectors rather than just remove them. Change-Id: I4595e00f93bf9ab8cf2493fe0432b91960f55a3f Reviewed-on: https://code.wireshark.org/review/6592 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Evan Huus <eapache@gmail.com> Reviewed-by: Guy Harris <guy@alum.mit.edu> Reviewed-by: Michael Mann <mmann78@netscape.net>
2015-01-18This file currently does need emem.h.Guy Harris1-0/+5
Change-Id: I27e709470d92d4be32ae42a3f4672f2070eaf65e Reviewed-on: https://code.wireshark.org/review/6639 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-01-18Remove some apparently-unnecessary includes of emem.h.Guy Harris1-5/+0
Change-Id: Ib7d1b587b439ff21ec6b7f1756ce6ccf25b66f80 Reviewed-on: https://code.wireshark.org/review/6635 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-06-19Removed SVN Id from epan dir.Dario Lombardo1-2/+0
Change-Id: I487a3451344796447f0d5621b993cc89c29e93b5 Reviewed-on: https://code.wireshark.org/review/2383 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-06-19Fix warnings in test binariesEvan Huus1-4/+4
They aren't built with the same warning flags as normal, but if you add those flags a bunch of warnings show up. Change-Id: If3776fbd98cc45e473f055e07c86ea8f6a5034f7 Reviewed-on: https://code.wireshark.org/review/2432 Reviewed-by: Evan Huus <eapache@gmail.com>
2013-12-23First round converting OIDs from emem to wmem. Just internal functions so far.Evan Huus1-5/+9
svn path=/trunk/; revision=54420
2013-10-26From Ed Beroset via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9330:Pascal Quantin1-1/+35
Add OID tests for adding named arcs svn path=/trunk/; revision=52878
2013-10-20Don't use g_assert_cmpint, it isn't happy on Windows. g_assert is nearly as goodEvan Huus1-43/+43
except it doesn't produce as nice error messages. svn path=/trunk/; revision=52701
2013-10-19Add OID unit tests. Bug 9294 ↵Michael Mann1-0/+481
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9294) From Ed Beroset svn path=/trunk/; revision=52692