summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorReilly Grant <reillyg@google.com>2023-03-28 16:20:01 -0700
committerReilly Grant <reillyg@google.com>2023-03-28 16:28:35 -0700
commit13ebad24dc1a5b338b619e8f1229105fbba3992f (patch)
tree98ac7c8e319d340d3d1d4bd76601da15c4f605d3 /db
parent89ea7f26438001a796f3338222e5321c5571042f (diff)
downloadleveldb-13ebad24dc1a5b338b619e8f1229105fbba3992f.tar.gz
Address comments.
Diffstat (limited to 'db')
-rw-r--r--db/db_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/db_test.cc b/db/db_test.cc
index a4d8d58..a4a84cd 100644
--- a/db/db_test.cc
+++ b/db/db_test.cc
@@ -1723,7 +1723,8 @@ TEST_F(DBTest, DestroyEmptyDir) {
std::vector<std::string> children;
ASSERT_LEVELDB_OK(env.GetChildren(dbname, &children));
#if defined(LEVELDB_PLATFORM_CHROMIUM)
- // Chromium's file system abstraction always filters out '.' and '..'.
+ // TODO(https://crbug.com/1428746): Chromium's file system abstraction always
+ // filters out '.' and '..'.
ASSERT_EQ(0, children.size());
#else
// The stock Env's do not filter out '.' and '..' special files.