mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Add unit test to check that libxml2 expects utf-8 encoded file paths on Windows
This commit is contained in:
parent
226087d06a
commit
b2ff1e1734
3 changed files with 92 additions and 0 deletions
12
libs/pbd/test/xml_test.h
Normal file
12
libs/pbd/test/xml_test.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include <cppunit/TestFixture.h>
|
||||
#include <cppunit/extensions/HelperMacros.h>
|
||||
|
||||
class XMLTest : public CppUnit::TestFixture
|
||||
{
|
||||
CPPUNIT_TEST_SUITE (XMLTest);
|
||||
CPPUNIT_TEST (testXMLFilenameEncoding);
|
||||
CPPUNIT_TEST_SUITE_END ();
|
||||
|
||||
public:
|
||||
void testXMLFilenameEncoding ();
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue