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 <ramesh.shanmugasundaram@bp.renesas.com>
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());
}