summaryrefslogtreecommitdiff
path: root/AK/Tests/TestFileSystemPath.cpp
diff options
context:
space:
mode:
authorBrian Gianforcaro <b.gianfo@gmail.com>2020-05-26 02:42:03 -0700
committerAndreas Kling <kling@serenityos.org>2020-05-26 13:38:20 +0200
commit71deafe476b57d17fcda283dc9de4458bdabcafa (patch)
tree6e38bdec172a5eed2f4219fd82ca46cd69fa6836 /AK/Tests/TestFileSystemPath.cpp
parente5045b62b8e02f60a0fd723a3d0da29e10d5c3dd (diff)
downloadserenity-71deafe476b57d17fcda283dc9de4458bdabcafa.zip
AK: Temporarily disable failing relative_paths tests in FileSystemPath suite
It appears this got broken in a3e4dfdf9859a9b955bf4728328f740a47de5851. I filed a tracking bug https://github.com/SerenityOS/serenity/issues/2388
Diffstat (limited to 'AK/Tests/TestFileSystemPath.cpp')
-rw-r--r--AK/Tests/TestFileSystemPath.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/AK/Tests/TestFileSystemPath.cpp b/AK/Tests/TestFileSystemPath.cpp
index 2cb1607939..56887ad192 100644
--- a/AK/Tests/TestFileSystemPath.cpp
+++ b/AK/Tests/TestFileSystemPath.cpp
@@ -52,6 +52,10 @@ TEST_CASE(dotdot_coalescing)
EXPECT_EQ(FileSystemPath("/../../../../").string(), "/");
}
+// Temporarily disabled, as they were broken by commit a3e4dfdf9859a9b955bf4728328f740a47de5851
+//
+#if 0
+
TEST_CASE(relative_paths)
{
{
@@ -117,4 +121,6 @@ TEST_CASE(has_extension)
}
}
+#endif
+
TEST_MAIN(FileSystemPath)