summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-04-13 10:06:31 +0300
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-04-15 12:42:40 +0300
commitef9c28a0e44f7220f49a5a47cb33077cbbba00ee (patch)
tree86d7de6979e046932b8606f01fbbecfe7a4293f8
parentf1f6cc23ce340087035e7ec912723e8a6134efc3 (diff)
test/utils: add operator aliases for lowlevel-blt-bench
Lowlevel-blt-bench uses the operator alias "outrev". Add an alias for it in the operator-name table. Also add aliases for overrev, inrev and atoprev, so that lowlevel-blt-bench can later recognize them for new test cases. The aliases are added such, that an operator to name lookup will never return them; it returns the proper names instead. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk> Reviewed-by: Ben Avison <bavison@riscosopen.org>
-rw-r--r--test/utils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/utils.c b/test/utils.c
index 9d4e350..2052ff0 100644
--- a/test/utils.c
+++ b/test/utils.c
@@ -974,12 +974,16 @@ static const operator_entry_t op_list[] =
ENTRY (DST),
ENTRY (OVER),
ENTRY (OVER_REVERSE),
+ ALIAS (OVER_REVERSE, "overrev"),
ENTRY (IN),
ENTRY (IN_REVERSE),
+ ALIAS (IN_REVERSE, "inrev"),
ENTRY (OUT),
ENTRY (OUT_REVERSE),
+ ALIAS (OUT_REVERSE, "outrev"),
ENTRY (ATOP),
ENTRY (ATOP_REVERSE),
+ ALIAS (ATOP_REVERSE, "atoprev"),
ENTRY (XOR),
ENTRY (ADD),
ENTRY (SATURATE),