aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/tensor
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-10-19 12:25:43 +0000
committerArne Juul <arnej@verizonmedia.com>2020-10-19 12:25:43 +0000
commit07c7bec5b7b0c94b3b8a18db6ae922ac5258471f (patch)
tree040b8807864f6ea974d151f9298e29a59e07172c /eval/src/tests/tensor
parent7aa285f121ce527711bbe9e899211da5b91e7856 (diff)
drop SimpleValueEngine
Diffstat (limited to 'eval/src/tests/tensor')
-rw-r--r--eval/src/tests/tensor/tensor_conformance/tensor_conformance_test.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/eval/src/tests/tensor/tensor_conformance/tensor_conformance_test.cpp b/eval/src/tests/tensor/tensor_conformance/tensor_conformance_test.cpp
index 1509ea05176..233aff0e425 100644
--- a/eval/src/tests/tensor/tensor_conformance/tensor_conformance_test.cpp
+++ b/eval/src/tests/tensor/tensor_conformance/tensor_conformance_test.cpp
@@ -2,7 +2,6 @@
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/eval/eval/test/tensor_conformance.h>
#include <vespa/eval/eval/simple_tensor_engine.h>
-#include <vespa/eval/eval/simple_value_engine.h>
#include <vespa/eval/eval/simple_value.h>
#include <vespa/eval/eval/fast_value.h>
#include <vespa/eval/tensor/default_tensor_engine.h>
@@ -11,7 +10,6 @@
using vespalib::eval::SimpleValueBuilderFactory;
using vespalib::eval::FastValueBuilderFactory;
using vespalib::eval::SimpleTensorEngine;
-using vespalib::eval::SimpleValueEngine;
using vespalib::eval::test::TensorConformance;
using vespalib::tensor::DefaultTensorEngine;
using vespalib::make_string;
@@ -31,10 +29,6 @@ TEST("require that SimpleValue implementation passes all conformance tests") {
TEST_DO(TensorConformance::run_tests(module_src_path, SimpleValueBuilderFactory::get()));
}
-TEST("require that SimpleValueEngine passes all conformance tests") {
- TEST_DO(TensorConformance::run_tests(module_src_path, SimpleValueEngine::ref()));
-}
-
TEST("require that FastValue implementation passes all conformance tests") {
TEST_DO(TensorConformance::run_tests(module_src_path, FastValueBuilderFactory::get()));
}