summaryrefslogtreecommitdiff
path: root/test/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-05-01 14:18:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-05-01 14:18:42 +0100
commit810f4a007c6d92ab679205ac22ecc8621fc01168 (patch)
treed163fc85e4a0381db14830f866ec60ca0913ae19 /test/source
parentfc7333c77bad1ddf5baab81a0d93eca43b6804f6 (diff)
rework callcatcher makefile to build subsequentcheck tests
Change-Id: Idda0262e62e42817b8c0502a38ee16913495233c
Diffstat (limited to 'test/source')
-rw-r--r--test/source/diff/diff.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/source/diff/diff.cxx b/test/source/diff/diff.cxx
index 574805dc9c68..00e144436e61 100644
--- a/test/source/diff/diff.cxx
+++ b/test/source/diff/diff.cxx
@@ -39,23 +39,6 @@
#include <cppunit/extensions/HelperMacros.h>
#endif
-XMLDiff::XMLDiff(const std::string& file1, const std::string& file2, const std::string& toleranceFile)
-{
- xmlFile1 = xmlParseFile(file1.c_str());
- xmlFile2 = xmlParseFile(file2.c_str());
-
- xmlDocPtr xmlToleranceFile = xmlParseFile(toleranceFile.c_str());
-
- loadToleranceFile(xmlToleranceFile);
- xmlFreeDoc(xmlToleranceFile);
-}
-
-XMLDiff::XMLDiff(const std::string& file1, const std::string& file2)
-{
- xmlFile1 = xmlParseFile(file1.c_str());
- xmlFile2 = xmlParseFile(file2.c_str());
-}
-
XMLDiff::XMLDiff( const char* pFileName, const char* pContent, int size, const char* pToleranceFile)
{
xmlFile1 = xmlParseFile(pFileName);