aboutsummaryrefslogtreecommitdiffstats
path: root/storageframework/src
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/src
parent83d0d125433ab8a4e7dbc40cd21d2188d95961d8 (diff)
Remove empty test.
Diffstat (limited to 'storageframework/src')
-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
4 files changed, 0 insertions, 36 deletions
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