aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction/generic_concat
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-10-08 16:06:20 +0000
committerArne Juul <arnej@verizonmedia.com>2020-10-08 16:06:20 +0000
commit08ca6183f9f5a66ca9a1fe7c3150a4bd6761bd9d (patch)
tree075f2c4d48a2785b93938fb58d6ba096118c2b73 /eval/src/tests/instruction/generic_concat
parent16d7902bc1fc911d69d82b0e40c3aef54651a299 (diff)
handle concat(vector of float, double)
Diffstat (limited to 'eval/src/tests/instruction/generic_concat')
-rw-r--r--eval/src/tests/instruction/generic_concat/generic_concat_test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp b/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
index 8cf18e25928..5405f957afc 100644
--- a/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
+++ b/eval/src/tests/instruction/generic_concat/generic_concat_test.cpp
@@ -21,6 +21,8 @@ using vespalib::make_string_short::fmt;
std::vector<Layout> concat_layouts = {
{}, {},
{}, {y(5)},
+ float_cells({y(5)}), {},
+ {}, float_cells({y(5)}),
{y(5)}, {},
{y(2)}, {y(3)},
{y(2)}, {x(3)},
@@ -39,6 +41,7 @@ std::vector<Layout> concat_layouts = {
{y(2),x(5),z(2)}, {y(3),x(5),z(2)},
{y(3),x(5)}, {x(5),z(7)},
float_cells({y(3),x(5)}), {x(5),z(7)},
+ float_cells({y(3),x(5)}), {},
{y(3),x(5)}, float_cells({x(5),z(7)}),
float_cells({y(3),x(5)}), float_cells({x(5),z(7)}),
{x({"a","b","c"})}, {x({"a","b","c"})},