Add negative testing support to (most) EW Binary Ops

 * Negative testing support for the following operators:
ADD, BITWISE_AND, BITWISE_OR, BITWISE_XOR, INTDIV, LOGICAL_AND,
LOGICAL_LEFT_SHIFT, LOGICAL_RIGHT_SHIFT, LOGICAL_OR, LOGICAL_XOR,
MAXIMUM, MINIMUM, POW, SUB

Change-Id: I2271f00b0b619604e864e36e4a4f987f1b2a37d4
Signed-off-by: Matthew Haddon <matthew.haddon@arm.com>
diff --git a/verif/tosa_error_if.py b/verif/tosa_error_if.py
index 94648d3..c28591d 100644
--- a/verif/tosa_error_if.py
+++ b/verif/tosa_error_if.py
@@ -29,4 +29,5 @@
     WrongRank = "WrongRank"
     BatchMismatch = "BatchMismatch"
     ChannelMismatch = "ChannelMismatch"
+    RankMismatch = "RankMismatch"