@@ -44,12 +44,14 @@ class MemoryShardStorage : public BackgroundIndexStorage {
44
44
llvm::Error storeShard (llvm::StringRef ShardIdentifier,
45
45
IndexFileOut Shard) const override {
46
46
std::lock_guard<std::mutex> Lock (StorageMu);
47
+ AccessedPaths.insert (ShardIdentifier);
47
48
Storage[ShardIdentifier] = llvm::to_string (Shard);
48
49
return llvm::Error::success ();
49
50
}
50
51
std::unique_ptr<IndexFileIn>
51
52
loadShard (llvm::StringRef ShardIdentifier) const override {
52
53
std::lock_guard<std::mutex> Lock (StorageMu);
54
+ AccessedPaths.insert (ShardIdentifier);
53
55
if (Storage.find (ShardIdentifier) == Storage.end ()) {
54
56
return nullptr ;
55
57
}
@@ -62,6 +64,8 @@ class MemoryShardStorage : public BackgroundIndexStorage {
62
64
CacheHits++;
63
65
return llvm::make_unique<IndexFileIn>(std::move (*IndexFile));
64
66
}
67
+
68
+ mutable llvm::StringSet<> AccessedPaths;
65
69
};
66
70
67
71
class BackgroundIndexTest : public ::testing::Test {
@@ -428,5 +432,34 @@ TEST_F(BackgroundIndexTest, ShardStorageEmptyFile) {
428
432
Contains (AllOf (Named (" new_func" ), Declared (), Not (Defined ()))));
429
433
}
430
434
435
+ TEST_F (BackgroundIndexTest, NoDotsInAbsPath) {
436
+ MockFSProvider FS;
437
+ llvm::StringMap<std::string> Storage;
438
+ size_t CacheHits = 0 ;
439
+ MemoryShardStorage MSS (Storage, CacheHits);
440
+ OverlayCDB CDB (/* Base=*/ nullptr );
441
+ BackgroundIndex Idx (Context::empty (), FS, CDB,
442
+ [&](llvm::StringRef) { return &MSS; });
443
+
444
+ tooling::CompileCommand Cmd;
445
+ FS.Files [testPath (" root/A.cc" )] = " " ;
446
+ Cmd.Filename = " ../A.cc" ;
447
+ Cmd.Directory = testPath (" root/build" );
448
+ Cmd.CommandLine = {" clang++" , " ../A.cc" };
449
+ CDB.setCompileCommand (testPath (" root/build/../A.cc" ), Cmd);
450
+
451
+ FS.Files [testPath (" root/B.cc" )] = " " ;
452
+ Cmd.Filename = " ./B.cc" ;
453
+ Cmd.Directory = testPath (" root" );
454
+ Cmd.CommandLine = {" clang++" , " ./B.cc" };
455
+ CDB.setCompileCommand (testPath (" root/./B.cc" ), Cmd);
456
+
457
+ ASSERT_TRUE (Idx.blockUntilIdleForTest ());
458
+ for (llvm::StringRef AbsPath : MSS.AccessedPaths .keys ()) {
459
+ EXPECT_FALSE (AbsPath.contains (" ./" )) << AbsPath;
460
+ EXPECT_FALSE (AbsPath.contains (" ../" )) << AbsPath;
461
+ }
462
+ }
463
+
431
464
} // namespace clangd
432
465
} // namespace clang
0 commit comments