]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed src/tests/testRock build.
authorAlex Rousskov <rousskov@measurement-factory.com>
Fri, 16 Aug 2013 14:44:40 +0000 (08:44 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Fri, 16 Aug 2013 14:44:40 +0000 (08:44 -0600)
src/Makefile.am
src/tests/stub_MemStore.cc

index 92f5fb3db378e4773bd0a51bf046cebcefd93463..2998bf13989c3999e7bde66fadca2b65a0b9ae1a 100644 (file)
@@ -3265,6 +3265,8 @@ tests_testRock_SOURCES = \
        cbdata.cc \
        CacheDigest.h \
        CacheDigest.cc \
+       CollapsedForwarding.h \
+       CollapsedForwarding.cc \
        ConfigOption.cc \
        ConfigParser.cc \
        disk.h \
@@ -3340,6 +3342,8 @@ tests_testRock_SOURCES = \
        StrList.h \
        StrList.cc \
        SwapDir.cc \
+       Transients.h \
+       Transients.cc \
        tests/testRock.cc \
        tests/testMain.cc \
        tests/testRock.h \
index 7f343c32c7858b716d5b06a4a5c42c6723c70fd2..e5d74c3d43cece81c3ac7738be442add3822f8f1 100644 (file)
 MemStore::MemStore() STUB
 MemStore::~MemStore() STUB
 bool MemStore::keepInLocalMemory(const StoreEntry &) const STUB_RETVAL(false)
-void MemStore::considerKeeping(StoreEntry &) STUB
+void MemStore::write(StoreEntry &e) STUB
+void MemStore::completeWriting(StoreEntry &e) STUB
+void MemStore::unlink(StoreEntry &e) STUB
+void MemStore::disconnect(StoreEntry &e) STUB
 void MemStore::reference(StoreEntry &) STUB
 void MemStore::maintain() STUB
 void MemStore::noteFreeMapSlice(const sfileno) STUB
@@ -29,3 +32,6 @@ uint64_t MemStore::currentCount() const STUB_RETVAL(0)
 int64_t MemStore::maxObjectSize() const STUB_RETVAL(0)
 StoreSearch *MemStore::search(String const, HttpRequest *) STUB_RETVAL(NULL)
 bool MemStore::dereference(StoreEntry &, bool) STUB_RETVAL(false)
+void MemStore::markForUnlink(StoreEntry&) STUB
+bool MemStore::anchorCollapsed(StoreEntry&, bool&) STUB_RETVAL(false)
+bool MemStore::updateCollapsed(StoreEntry&) STUB_RETVAL(false)