aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/tests/instruction')
-rw-r--r--eval/src/tests/instruction/mixed_inner_product_function/mixed_inner_product_function_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/eval/src/tests/instruction/mixed_inner_product_function/mixed_inner_product_function_test.cpp b/eval/src/tests/instruction/mixed_inner_product_function/mixed_inner_product_function_test.cpp
index 95d3d882f7b..839c7bcb64a 100644
--- a/eval/src/tests/instruction/mixed_inner_product_function/mixed_inner_product_function_test.cpp
+++ b/eval/src/tests/instruction/mixed_inner_product_function/mixed_inner_product_function_test.cpp
@@ -30,21 +30,21 @@ struct FunInfo {
};
void assert_mixed_optimized(const vespalib::string &expr) {
- TEST_STATE(expr.c_str());
+ SCOPED_TRACE(expr.c_str());
CellTypeSpace all_types(CellTypeUtils::list_types(), 2);
using MIP = FunInfo<MixedInnerProductFunction>;
EvalFixture::verify<MIP>(expr, {MIP{}}, all_types);
}
void assert_not_mixed_optimized(const vespalib::string &expr) {
- TEST_STATE(expr.c_str());
+ SCOPED_TRACE(expr.c_str());
CellTypeSpace all_types(CellTypeUtils::list_types(), 2);
using MIP = FunInfo<MixedInnerProductFunction>;
EvalFixture::verify<MIP>(expr, {}, all_types);
}
void assert_dense_optimized(const vespalib::string &expr) {
- TEST_STATE(expr.c_str());
+ SCOPED_TRACE(expr.c_str());
CellTypeSpace all_types(CellTypeUtils::list_types(), 2);
using MIP = FunInfo<MixedInnerProductFunction>;
EvalFixture::verify<MIP>(expr, {}, all_types);