From 19aa05b33990302d2388b8c90eeb71a3509e6320 Mon Sep 17 00:00:00 2001 From: Jules Clero Date: Wed, 11 Feb 2015 09:42:20 +0100 Subject: Fix tUINT32_ARRAY index overflow test This test was using the wrong array size. It leads to false positive. Signed-off-by: Jules Clero --- test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py b/test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py index ce584ac..a5e0cb0 100644 --- a/test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py +++ b/test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py @@ -69,7 +69,7 @@ class TestCases(PfwTestCase): print '\r' self.pfw.sendCmd("setTuningMode", "on") print '\r' - self.array_size = 10 + self.array_size = 100 self.array_min = 0 self.array_max = 100 -- cgit v1.1