diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-01 14:18:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-01 14:18:42 +0100 |
commit | 810f4a007c6d92ab679205ac22ecc8621fc01168 (patch) | |
tree | d163fc85e4a0381db14830f866ec60ca0913ae19 /test | |
parent | fc7333c77bad1ddf5baab81a0d93eca43b6804f6 (diff) |
rework callcatcher makefile to build subsequentcheck tests
Change-Id: Idda0262e62e42817b8c0502a38ee16913495233c
Diffstat (limited to 'test')
-rw-r--r-- | test/inc/test/xmldiff.hxx | 2 | ||||
-rw-r--r-- | test/source/diff/diff.cxx | 17 |
2 files changed, 0 insertions, 19 deletions
diff --git a/test/inc/test/xmldiff.hxx b/test/inc/test/xmldiff.hxx index 8a3d93d83061..0d768ae08fdb 100644 --- a/test/inc/test/xmldiff.hxx +++ b/test/inc/test/xmldiff.hxx @@ -80,8 +80,6 @@ struct tolerance class OOO_DLLPUBLIC_TEST XMLDiff { public: - XMLDiff(const std::string& file1, const std::string& file2, const std::string& toleranceFile); - XMLDiff(const std::string& file1, const std::string& file2); XMLDiff(const char* pFileName, const char* pContent, int size, const char* pToleranceFileName); ~XMLDiff(); 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); |