Disable the MIME type test.

* This tests requires some private APIs which have been changed, it
needs to be rewritten.
* I'm also not sure if it's still possible to work on a copy of the MIME
* database to avoid messing with the system one.
This commit is contained in:
Adrien Destugues 2014-06-10 10:10:30 +02:00
parent 182a5f8e53
commit 0256e7a458
2 changed files with 3 additions and 1 deletions

View File

@ -14,7 +14,7 @@ UnitTestLib libstoragetest.so
FindDirectoryTest.cpp FindDirectoryTest.cpp
FileTest.cpp FileTest.cpp
MimeSnifferTest.cpp MimeSnifferTest.cpp
MimeTypeTest.cpp # MimeTypeTest.cpp
NodeInfoTest.cpp NodeInfoTest.cpp
NodeTest.cpp NodeTest.cpp
PathTest.cpp PathTest.cpp

View File

@ -26,7 +26,9 @@ BTestSuite* getTestSuite() {
suite->addTest("BDirectory", DirectoryTest::Suite()); suite->addTest("BDirectory", DirectoryTest::Suite());
suite->addTest("BEntry", EntryTest::Suite()); suite->addTest("BEntry", EntryTest::Suite());
suite->addTest("BFile", FileTest::Suite()); suite->addTest("BFile", FileTest::Suite());
#if 0
suite->addTest("BMimeType", MimeTypeTest::Suite()); suite->addTest("BMimeType", MimeTypeTest::Suite());
#endif
suite->addTest("BNode", NodeTest::Suite()); suite->addTest("BNode", NodeTest::Suite());
suite->addTest("BNodeInfo", NodeInfoTest::Suite()); suite->addTest("BNodeInfo", NodeInfoTest::Suite());
suite->addTest("BPath", PathTest::Suite()); suite->addTest("BPath", PathTest::Suite());