From: Christos Tsantilas Date: Thu, 20 Nov 2014 11:16:35 +0000 (+0200) Subject: Logging fast things part 2: fixes to allow make check work again X-Git-Tag: merge-candidate-3-v1~481 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=604ca20e414348fba07af0421e9d303b52bc442c;p=thirdparty%2Fsquid.git Logging fast things part 2: fixes to allow make check work again Add tvSub and tvAssignAdd stubs to src/tests/stub_time.cc --- diff --git a/src/tests/stub_time.cc b/src/tests/stub_time.cc index a66f75915f..a73fd6e821 100644 --- a/src/tests/stub_time.cc +++ b/src/tests/stub_time.cc @@ -18,6 +18,9 @@ time_t squid_curtime = 0; time_t getCurrentTime(void) STUB_RETVAL(0) int tvSubMsec(struct timeval, struct timeval) STUB_RETVAL(0) +void tvSub(timeval&, timeval const&, timeval const&) STUB +void tvAssignAdd(timeval&, timeval const&) STUB + const char * Time::FormatStrf(time_t ) STUB_RETVAL("") const char * Time::FormatHttpd(time_t ) STUB_RETVAL("")