regression_4017: Test few one-by-one byte case in level 0

Change default value of middle_count in regression test 4017 when
test level is below 12. Instead of 0, use 2. This allows to pass
few tests feeding data byte per byte without increasing the
test duration as when test level is 12 or above.

By the way correct the inline comment that describes the "middle_count"
value that is 32 when level >= 12 not the opposite.

Signed-off-by: Etienne Carriere <etienne.carriere@foss.st.com>
Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
Acked-by: Jerome Forissier <jerome.forissier@linaro.org>
diff --git a/host/xtest/regression_4000.c b/host/xtest/regression_4000.c
index cbda179..0f19a42 100644
--- a/host/xtest/regression_4000.c
+++ b/host/xtest/regression_4000.c
@@ -6887,6 +6887,8 @@
 
 	if (level >= 12)
 		middle_count = 2 * TEE_AES_BLOCK_SIZE;
+	else
+		middle_count = 2;
 
 	bs.block_size = 16;
 	bs.text_size = bs.block_size * 6 + extra_size;
@@ -6968,7 +6970,7 @@
 		 * If level >= 12 test with initial count of each n, an
 		 * exhaustive of every possible initial count.
 		 *
-		 * If level < 12 test with middle_count of 32 else 0.
+		 * If level >= 12 test with middle_count of 32 else 2.
 		 * (middle_count - n) bytes are processed one by one.
 		 *
 		 * The idea is to try to match all corner cases when