From 83c72518ab2bf9559a0fbcdabcf27e9a10722215 Mon Sep 17 00:00:00 2001 From: Ramesh Shanmugasundaram Date: Thu, 22 Dec 2016 15:13:39 +0000 Subject: [PATCH] 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 --- ...orted-extension.xxx => unsupported-extension.xx} | Bin tests/test_fileref.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/data/{unsupported-extension.xxx => unsupported-extension.xx} (100%) 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()); } -- 2.40.0