From: Ramesh Shanmugasundaram Date: Thu, 22 Dec 2016 15:13:39 +0000 (+0000) Subject: Renamed unsupported-extension.xxx and modified test X-Git-Tag: v1.12-beta-1~91^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83c72518ab2bf9559a0fbcdabcf27e9a10722215;p=taglib Renamed unsupported-extension.xxx and modified test The file name unsupported-extension.xxx causes issue when unpacked taglib-xxx.gz over an NFS partition. The file extension ".xxx" is the one NFS uses for its own purpose and hence it will not allow creation of this file. Hence renamed the file and modified the test cases that checks for this file. Signed-off-by: Ramesh Shanmugasundaram --- diff --git a/tests/data/unsupported-extension.xxx b/tests/data/unsupported-extension.xx similarity index 100% rename from tests/data/unsupported-extension.xxx rename to tests/data/unsupported-extension.xx diff --git a/tests/test_fileref.cpp b/tests/test_fileref.cpp index 2d77682a..1b899975 100644 --- a/tests/test_fileref.cpp +++ b/tests/test_fileref.cpp @@ -233,7 +233,7 @@ public: FileRef f1(TEST_FILE_PATH_C("no-extension")); CPPUNIT_ASSERT(f1.isNull()); - FileRef f2(TEST_FILE_PATH_C("unsupported-extension.xxx")); + FileRef f2(TEST_FILE_PATH_C("unsupported-extension.xx")); CPPUNIT_ASSERT(f2.isNull()); }