aboutsummaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-05-27 12:54:11 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-05-27 12:54:11 +0000
commitbdde5f1b839ae2947007af1b1feb9045417fb39b (patch)
treeea00e057c30582bec6f0c94b7fad0aac0bbc4ccc /storageframework
parent83d0d125433ab8a4e7dbc40cd21d2188d95961d8 (diff)
Remove empty test.
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/CMakeLists.txt1
-rw-r--r--storageframework/src/tests/CMakeLists.txt1
-rw-r--r--storageframework/src/tests/status/.gitignore2
-rw-r--r--storageframework/src/tests/status/CMakeLists.txt7
-rw-r--r--storageframework/src/tests/status/htmlstatustest.cpp26
5 files changed, 0 insertions, 37 deletions
diff --git a/storageframework/CMakeLists.txt b/storageframework/CMakeLists.txt
index a3414a8b05c..2211a4c009d 100644
--- a/storageframework/CMakeLists.txt
+++ b/storageframework/CMakeLists.txt
@@ -26,6 +26,5 @@ vespa_define_module(
TESTS
src/tests
src/tests/clock
- src/tests/status
src/tests/thread
)
diff --git a/storageframework/src/tests/CMakeLists.txt b/storageframework/src/tests/CMakeLists.txt
index aa4be0783fa..e84fe5fb663 100644
--- a/storageframework/src/tests/CMakeLists.txt
+++ b/storageframework/src/tests/CMakeLists.txt
@@ -20,7 +20,6 @@ vespa_add_executable(storageframework_testrunner_app TEST
SOURCES
testrunner.cpp
DEPENDS
- storageframework_teststatus
storageframework_testthread
)
diff --git a/storageframework/src/tests/status/.gitignore b/storageframework/src/tests/status/.gitignore
deleted file mode 100644
index 7e7c0fe7fae..00000000000
--- a/storageframework/src/tests/status/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/.depend
-/Makefile
diff --git a/storageframework/src/tests/status/CMakeLists.txt b/storageframework/src/tests/status/CMakeLists.txt
deleted file mode 100644
index 634de57324c..00000000000
--- a/storageframework/src/tests/status/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_library(storageframework_teststatus
- SOURCES
- htmlstatustest.cpp
- DEPENDS
- storageframework
-)
diff --git a/storageframework/src/tests/status/htmlstatustest.cpp b/storageframework/src/tests/status/htmlstatustest.cpp
deleted file mode 100644
index 413968b9109..00000000000
--- a/storageframework/src/tests/status/htmlstatustest.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#include <vespa/vdstestlib/cppunit/macros.h>
-#include <vespa/storageframework/generic/status/htmlstatusreporter.h>
-
-namespace storage {
-namespace framework {
-
-struct HtmlStatusTest : public CppUnit::TestFixture {
-
- void testHtmlStatus();
-
- CPPUNIT_TEST_SUITE(HtmlStatusTest);
- CPPUNIT_TEST(testHtmlStatus);
- CPPUNIT_TEST_SUITE_END();
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION(HtmlStatusTest);
-
-void
-HtmlStatusTest::testHtmlStatus()
-{
-}
-
-} // framework
-} // storage