diff options
Diffstat (limited to 'llvm/unittests/CAS/ActionCacheTest.cpp')
| -rw-r--r-- | llvm/unittests/CAS/ActionCacheTest.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/CAS/ActionCacheTest.cpp b/llvm/unittests/CAS/ActionCacheTest.cpp index db67e30..692da23 100644 --- a/llvm/unittests/CAS/ActionCacheTest.cpp +++ b/llvm/unittests/CAS/ActionCacheTest.cpp @@ -21,7 +21,7 @@ using namespace llvm;  using namespace llvm::cas;  TEST_P(CASTest, ActionCacheHit) { -  std::shared_ptr<ObjectStore> CAS = createObjectStore(); +  std::unique_ptr<ObjectStore> CAS = createObjectStore();    std::unique_ptr<ActionCache> Cache = createActionCache();    std::optional<ObjectProxy> ID; @@ -36,7 +36,7 @@ TEST_P(CASTest, ActionCacheHit) {  }  TEST_P(CASTest, ActionCacheMiss) { -  std::shared_ptr<ObjectStore> CAS = createObjectStore(); +  std::unique_ptr<ObjectStore> CAS = createObjectStore();    std::unique_ptr<ActionCache> Cache = createActionCache();    std::optional<ObjectProxy> ID1, ID2; @@ -59,7 +59,7 @@ TEST_P(CASTest, ActionCacheMiss) {  }  TEST_P(CASTest, ActionCacheRewrite) { -  std::shared_ptr<ObjectStore> CAS = createObjectStore(); +  std::unique_ptr<ObjectStore> CAS = createObjectStore();    std::unique_ptr<ActionCache> Cache = createActionCache();    std::optional<ObjectProxy> ID1, ID2;  | 
