diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-09-17 15:39:33 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-09-17 15:39:33 +0100 |
commit | 35841416d8480db608488e10ac49f9879f8ba753 (patch) | |
tree | ff8945bc52c20ee51f508cd8a257a3e7be7fc155 /icespider/xslt | |
parent | Bad request on missing or invalid parameters (diff) | |
download | icespider-35841416d8480db608488e10ac49f9879f8ba753.tar.bz2 icespider-35841416d8480db608488e10ac49f9879f8ba753.tar.xz icespider-35841416d8480db608488e10ac49f9879f8ba753.zip |
Fix up lots of test coverage
Diffstat (limited to 'icespider/xslt')
-rw-r--r-- | icespider/xslt/exslt.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/icespider/xslt/exslt.cpp b/icespider/xslt/exslt.cpp index 63bd0d1..772ef5e 100644 --- a/icespider/xslt/exslt.cpp +++ b/icespider/xslt/exslt.cpp @@ -8,10 +8,12 @@ void initLibXml() exsltRegisterAll(); } +// LCOV_EXCL_START lcov actually misses destructor functions static void cleanupLibXml() __attribute__((destructor(102))); void cleanupLibXml() { xsltCleanupGlobals(); xmlCleanupParser(); } +// LCOV_EXCL_STOP |