Fix handling of leading .. in simplify_path

Prior to this `..\..\texture.png` was incorrectly simplified to `texture.png`
This commit is contained in:
demolke
2024-12-05 23:23:53 +01:00
parent eb5103093c
commit 964e2b3a9e
2 changed files with 5 additions and 1 deletions

View File

@@ -1687,6 +1687,10 @@ TEST_CASE("[String] Path functions") {
for (int i = 0; i < 3; i++) {
CHECK(String(file_name[i]).is_valid_filename() == valid[i]);
}
CHECK(String("res://texture.png") == String("res://folder/../folder/../texture.png").simplify_path());
CHECK(String("res://texture.png") == String("res://folder/sub/../../texture.png").simplify_path());
CHECK(String("res://../../texture.png") == String("res://../../texture.png").simplify_path());
}
TEST_CASE("[String] hash") {