compat.sh: make options a bit more robust
diff --git a/tests/compat.sh b/tests/compat.sh
index 861d20e..b020f36 100755
--- a/tests/compat.sh
+++ b/tests/compat.sh
@@ -102,6 +102,10 @@
         esac
         shift
     done
+
+    # sanitize some options (modes checked later)
+    VERIFIES="$( echo $VERIFIES | tr [a-z] [A-Z] )"
+    TYPES="$( echo $TYPES | tr [a-z] [A-Z] )"
 }
 
 log() {