Optimize automation-event process splitting
[ardour.git] / libs / pbd / test / filesystem_test.h
index 588e731af26a57497086b9750f78144c683d6dc6..275ae906da1579400fc528fbea119314a4440470 100644 (file)
@@ -7,13 +7,27 @@ class FilesystemTest : public CppUnit::TestFixture
        CPPUNIT_TEST (testPathIsWithin);
        CPPUNIT_TEST (testCopyFileASCIIFilename);
        CPPUNIT_TEST (testCopyFileUTF8Filename);
+       CPPUNIT_TEST (testOpenFileUTF8Filename);
        CPPUNIT_TEST (testFindFilesMatchingPattern);
+       CPPUNIT_TEST (testClearDirectory);
+       CPPUNIT_TEST (testRemoveDirectory);
+       CPPUNIT_TEST (testCanonicalPathASCII);
+       CPPUNIT_TEST (testCanonicalPathUTF8);
+       CPPUNIT_TEST (testTouchFile);
+       CPPUNIT_TEST (testStatFile);
        CPPUNIT_TEST_SUITE_END ();
 
 public:
        void testPathIsWithin ();
        void testCopyFileASCIIFilename ();
        void testCopyFileUTF8Filename ();
+       void testOpenFileUTF8Filename ();
        void testFindFilesMatchingPattern ();
+       void testClearDirectory ();
+       void testRemoveDirectory ();
+       void testCanonicalPathASCII ();
+       void testCanonicalPathUTF8 ();
+       void testTouchFile ();
+       void testStatFile ();
 };