summaryrefslogtreecommitdiffstats
path: root/fbench
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahoo-inc.com>2016-11-02 11:27:21 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2016-11-02 12:29:40 +0000
commitfcd144383e8961539d67f4754d8efa3672c77b5d (patch)
tree2470b3862392f02e5a604b13f8fe6f802ae6e295 /fbench
parent8e1372f83d9816f1b7bb54307e96cba4dcc13eb3 (diff)
Only name source once. Fix compile errors.
Diffstat (limited to 'fbench')
-rw-r--r--fbench/src/test/CMakeLists.txt2
-rw-r--r--fbench/src/test/clientstatus.cpp2
-rw-r--r--fbench/src/test/httpclient_splitstring.cpp2
3 files changed, 4 insertions, 2 deletions
diff --git a/fbench/src/test/CMakeLists.txt b/fbench/src/test/CMakeLists.txt
index 69214361825..ef8a7c75ad3 100644
--- a/fbench/src/test/CMakeLists.txt
+++ b/fbench/src/test/CMakeLists.txt
@@ -4,6 +4,7 @@ vespa_add_executable(fbench_httpclient_splitstring_app TEST
httpclient_splitstring.cpp
DEPENDS
fbench_util
+ fbench_httpclient
)
vespa_add_test(NAME fbench_httpclient_splitstring_app COMMAND fbench_httpclient_splitstring_app)
vespa_add_executable(fbench_httpclient_app
@@ -25,5 +26,6 @@ vespa_add_executable(fbench_clientstatus_app TEST
clientstatus.cpp
DEPENDS
fbench_util
+ fastos_static
)
vespa_add_test(NAME fbench_clientstatus_app COMMAND fbench_clientstatus_app)
diff --git a/fbench/src/test/clientstatus.cpp b/fbench/src/test/clientstatus.cpp
index 6bed6657699..1ab35557278 100644
--- a/fbench/src/test/clientstatus.cpp
+++ b/fbench/src/test/clientstatus.cpp
@@ -1,7 +1,7 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <util/timer.h>
-#include <util/httpclient.h>
#include <util/filereader.h>
+#include <httpclient/httpclient.h>
#include <fbench/client.h>
int
diff --git a/fbench/src/test/httpclient_splitstring.cpp b/fbench/src/test/httpclient_splitstring.cpp
index 4e893d37db4..ddac28c9709 100644
--- a/fbench/src/test/httpclient_splitstring.cpp
+++ b/fbench/src/test/httpclient_splitstring.cpp
@@ -1,6 +1,6 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <util/httpclient.h>
+#include <httpclient/httpclient.h>
class DebugHTTPClient : public HTTPClient
{