summaryrefslogtreecommitdiffstats
path: root/config/src/tests/getconfig/getconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config/src/tests/getconfig/getconfig.cpp')
-rw-r--r--config/src/tests/getconfig/getconfig.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/src/tests/getconfig/getconfig.cpp b/config/src/tests/getconfig/getconfig.cpp
index ec350e3140b..27f4fcf7505 100644
--- a/config/src/tests/getconfig/getconfig.cpp
+++ b/config/src/tests/getconfig/getconfig.cpp
@@ -1,6 +1,7 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/fastos/fastos.h>
#include <vespa/vespalib/testkit/test_kit.h>
+#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/config/config.h>
#include <vespa/config/raw/rawsource.h>
#include "config-my.h"
@@ -34,7 +35,7 @@ TEST("requireThatGetConfigReturnsCorrectConfig")
TEST("requireThatGetConfigReturnsCorrectConfig")
{
- FileSpec spec("my.cfg");
+ FileSpec spec(vespalib::TestApp::GetSourceDirectory() + "my.cfg");
std::unique_ptr<MyConfig> cfg = ConfigGetter<MyConfig>::getConfig("", spec);
ASSERT_TRUE(cfg.get() != NULL);
ASSERT_EQUAL("my", cfg->defName());