aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'fnet/src/tests')
-rw-r--r--fnet/src/tests/frt/method_pt/method_pt.cpp36
-rw-r--r--fnet/src/tests/frt/rpc/invoke.cpp10
-rw-r--r--fnet/src/tests/frt/rpc/sharedblob.cpp8
-rw-r--r--fnet/src/tests/locking/castspeed.cpp4
-rw-r--r--fnet/src/tests/locking/drainpackets.cpp6
-rw-r--r--fnet/src/tests/scheduling/sloweventloop.cpp1
-rw-r--r--fnet/src/tests/sync_execute/sync_execute.cpp6
7 files changed, 32 insertions, 39 deletions
diff --git a/fnet/src/tests/frt/method_pt/method_pt.cpp b/fnet/src/tests/frt/method_pt/method_pt.cpp
index 4b869f6ba9f..98ab9d228a1 100644
--- a/fnet/src/tests/frt/method_pt/method_pt.cpp
+++ b/fnet/src/tests/frt/method_pt/method_pt.cpp
@@ -112,9 +112,9 @@ class MediumHandler1 : public FRT_Invokable,
public MediumB
{
public:
- virtual void foo() override {}
- virtual void bar() override {}
- void RPC_Method(FRT_RPCRequest *req);
+ void foo() override {}
+ void bar() override {}
+ void RPC_Method(FRT_RPCRequest *req);
};
@@ -123,9 +123,9 @@ class MediumHandler2 : public MediumA,
public MediumB
{
public:
- virtual void foo() override {}
- virtual void bar() override {}
- void RPC_Method(FRT_RPCRequest *req);
+ void foo() override {}
+ void bar() override {}
+ void RPC_Method(FRT_RPCRequest *req);
};
@@ -134,9 +134,9 @@ class MediumHandler3 : public MediumA,
public FRT_Invokable
{
public:
- virtual void foo() override {}
- virtual void bar() override {}
- void RPC_Method(FRT_RPCRequest *req);
+ void foo() override {}
+ void bar() override {}
+ void RPC_Method(FRT_RPCRequest *req);
};
//-------------------------------------------------------------
@@ -146,9 +146,9 @@ class ComplexHandler1 : public FRT_Invokable,
public ComplexB
{
public:
- virtual void foo() override {}
- virtual void bar() override {}
- void RPC_Method(FRT_RPCRequest *req);
+ void foo() override {}
+ void bar() override {}
+ void RPC_Method(FRT_RPCRequest *req);
};
@@ -157,9 +157,9 @@ class ComplexHandler2 : public ComplexA,
public ComplexB
{
public:
- virtual void foo() override {}
- virtual void bar() override {}
- void RPC_Method(FRT_RPCRequest *req);
+ void foo() override {}
+ void bar() override {}
+ void RPC_Method(FRT_RPCRequest *req);
};
@@ -168,9 +168,9 @@ class ComplexHandler3 : public ComplexA,
public FRT_Invokable
{
public:
- virtual void foo() override {}
- virtual void bar() override {}
- void RPC_Method(FRT_RPCRequest *req);
+ void foo() override {}
+ void bar() override {}
+ void RPC_Method(FRT_RPCRequest *req);
};
//-------------------------------------------------------------
diff --git a/fnet/src/tests/frt/rpc/invoke.cpp b/fnet/src/tests/frt/rpc/invoke.cpp
index 7853c473f5e..d51557e9cfd 100644
--- a/fnet/src/tests/frt/rpc/invoke.cpp
+++ b/fnet/src/tests/frt/rpc/invoke.cpp
@@ -48,8 +48,7 @@ struct LockedReqWait : public FRT_IRequestWait
return ret;
}
- virtual void RequestDone(FRT_RPCRequest *) override
- {
+ void RequestDone(FRT_RPCRequest *) override {
_wasLocked = isLocked();
_cond.Lock();
_done = true;
@@ -57,8 +56,7 @@ struct LockedReqWait : public FRT_IRequestWait
_cond.Unlock();
}
- void waitReq()
- {
+ void waitReq() {
_cond.Lock();
while(!_done) {
_cond.Wait();
@@ -78,9 +76,7 @@ private:
DelayedReturn &operator=(const DelayedReturn &);
public:
- DelayedReturn(FNET_Scheduler *sched,
- FRT_RPCRequest *req,
- double delay)
+ DelayedReturn(FNET_Scheduler *sched, FRT_RPCRequest *req, double delay)
: FNET_Task(sched),
_req(req)
{
diff --git a/fnet/src/tests/frt/rpc/sharedblob.cpp b/fnet/src/tests/frt/rpc/sharedblob.cpp
index a086584b36a..363a7891cbd 100644
--- a/fnet/src/tests/frt/rpc/sharedblob.cpp
+++ b/fnet/src/tests/frt/rpc/sharedblob.cpp
@@ -10,10 +10,10 @@ struct MyBlob : FRT_ISharedBlob
{
int refcnt;
MyBlob() : refcnt(1) {}
- virtual uint32_t getLen() override { return (strlen("blob_test") + 1); }
- virtual const char *getData() override { return "blob_test"; }
- virtual void addRef() override { ++refcnt; }
- virtual void subRef() override { --refcnt; }
+ uint32_t getLen() override { return (strlen("blob_test") + 1); }
+ const char *getData() override { return "blob_test"; }
+ void addRef() override { ++refcnt; }
+ void subRef() override { --refcnt; }
};
struct Data
diff --git a/fnet/src/tests/locking/castspeed.cpp b/fnet/src/tests/locking/castspeed.cpp
index 1f57bc4757c..859ec08ec69 100644
--- a/fnet/src/tests/locking/castspeed.cpp
+++ b/fnet/src/tests/locking/castspeed.cpp
@@ -18,14 +18,14 @@ class C: public A
{
public:
B *otherB;
- virtual B* asB() override { return otherB; }
+ B* asB() override { return otherB; }
C() : otherB(nullptr) {}
};
class B: public C
{
public:
- virtual B* asB() override { return this; }
+ B* asB() override { return this; }
};
diff --git a/fnet/src/tests/locking/drainpackets.cpp b/fnet/src/tests/locking/drainpackets.cpp
index fb86371c9ec..b453793843f 100644
--- a/fnet/src/tests/locking/drainpackets.cpp
+++ b/fnet/src/tests/locking/drainpackets.cpp
@@ -2,15 +2,13 @@
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/fnet/fnet.h>
-
class MyPacket : public FNET_Packet
{
public:
- uint32_t GetPCODE() override { return 0; }
+ uint32_t GetPCODE() override { return 0; }
uint32_t GetLength() override { return 0; }
void Encode(FNET_DataBuffer *) override {}
- bool Decode(FNET_DataBuffer *, uint32_t) override
- { return true; }
+ bool Decode(FNET_DataBuffer *, uint32_t) override { return true; }
};
diff --git a/fnet/src/tests/scheduling/sloweventloop.cpp b/fnet/src/tests/scheduling/sloweventloop.cpp
index a4b57cfd218..a13205f4b0e 100644
--- a/fnet/src/tests/scheduling/sloweventloop.cpp
+++ b/fnet/src/tests/scheduling/sloweventloop.cpp
@@ -2,7 +2,6 @@
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/fnet/fnet.h>
-
class MyTask : public FNET_Task
{
public:
diff --git a/fnet/src/tests/sync_execute/sync_execute.cpp b/fnet/src/tests/sync_execute/sync_execute.cpp
index c832ef0330d..ca77ab6f73b 100644
--- a/fnet/src/tests/sync_execute/sync_execute.cpp
+++ b/fnet/src/tests/sync_execute/sync_execute.cpp
@@ -1,11 +1,11 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
-#include <vespa/fnet/fnet.h>
-#include <vespa/vespalib/util/sync.h>
+#include <vespa/fnet/transport.h>
+#include <vespa/fnet/iexecutable.h>
struct DoIt : public FNET_IExecutable {
vespalib::Gate gate;
- virtual void execute() override {
+ void execute() override {
gate.countDown();
}
};