summaryrefslogtreecommitdiffstats
path: root/logd
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-03-20 15:01:03 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-03-20 15:01:03 +0000
commit536e278bc2a41a8e92c2926d86e46fcf5b5f2912 (patch)
tree58e95bb9159feb3b6dce187d43768509a9d93539 /logd
parent7f56fef39a1cf0c2e4f9c5d02b0696ada9aafc8d (diff)
Remove unit test that doesn't test anything.
Diffstat (limited to 'logd')
-rw-r--r--logd/CMakeLists.txt1
-rw-r--r--logd/src/tests/info/.gitignore4
-rw-r--r--logd/src/tests/info/CMakeLists.txt7
-rw-r--r--logd/src/tests/info/info.cpp13
4 files changed, 0 insertions, 25 deletions
diff --git a/logd/CMakeLists.txt b/logd/CMakeLists.txt
index ad7bcdddeba..25beef08dd0 100644
--- a/logd/CMakeLists.txt
+++ b/logd/CMakeLists.txt
@@ -15,7 +15,6 @@ vespa_define_module(
TESTS
src/tests/forwarder
- src/tests/info
src/tests/rotate
)
diff --git a/logd/src/tests/info/.gitignore b/logd/src/tests/info/.gitignore
deleted file mode 100644
index 9ca863402a5..00000000000
--- a/logd/src/tests/info/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-.depend
-Makefile
-info_test
-logd_info_test_app
diff --git a/logd/src/tests/info/CMakeLists.txt b/logd/src/tests/info/CMakeLists.txt
deleted file mode 100644
index 0428753a3a6..00000000000
--- a/logd/src/tests/info/CMakeLists.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(logd_info_test_app TEST
- SOURCES
- info.cpp
- DEPENDS
-)
-vespa_add_test(NAME logd_info_test_app NO_VALGRIND COMMAND logd_info_test_app)
diff --git a/logd/src/tests/info/info.cpp b/logd/src/tests/info/info.cpp
deleted file mode 100644
index 438db3c3e7f..00000000000
--- a/logd/src/tests/info/info.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/log/log.h>
-LOG_SETUP("info_test");
-#include <vespa/vespalib/testkit/testapp.h>
-
-TEST_SETUP(Test);
-
-int
-Test::Main()
-{
- TEST_INIT("info_test");
- TEST_DONE();
-}