aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohannes Schickel2010-08-16 16:01:31 +0000
committerJohannes Schickel2010-08-16 16:01:31 +0000
commit7b51537be2341b62795c308c140faca387fa04e6 (patch)
tree76ad8edab7ba719037f47dc113f6fdbcadaca858 /test
parentc284e78cc0bbb0e861162c4c4cc8c765ec60d5f1 (diff)
downloadscummvm-rg350-7b51537be2341b62795c308c140faca387fa04e6.tar.gz
scummvm-rg350-7b51537be2341b62795c308c140faca387fa04e6.tar.bz2
scummvm-rg350-7b51537be2341b62795c308c140faca387fa04e6.zip
Common: Fix bug in lastPathComponent.
Prior to this change lastPathComponent would not create a correct result, when the input of lastPathComponent did not contain a single separator. I also added a test case for this in our unit tests. svn-id: r52123
Diffstat (limited to 'test')
-rw-r--r--test/common/str.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/common/str.h b/test/common/str.h
index 6581c37cdb..e1f2b39578 100644
--- a/test/common/str.h
+++ b/test/common/str.h
@@ -266,6 +266,8 @@ class StringTestSuite : public CxxTest::TestSuite
TS_ASSERT_EQUALS(Common::lastPathComponent("foo/./bar", '/'), "bar");
TS_ASSERT_EQUALS(Common::lastPathComponent("foo//./bar//", '/'), "bar");
TS_ASSERT_EQUALS(Common::lastPathComponent("foo//.bar//", '/'), ".bar");
+
+ TS_ASSERT_EQUALS(Common::lastPathComponent("foo", '/'), "foo");
}
void test_normalizePath() {