summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJules Clero <julesx.clero@intel.com>2015-02-11 09:42:20 +0100
committerEric Laurent <elaurent@google.com>2015-04-24 13:39:12 -0700
commit19aa05b33990302d2388b8c90eeb71a3509e6320 (patch)
treebae705f20690f4b697f8bf355d9b6bd2e22ee346 /test
parentd770f7a4082873887833d886fb8aeacf1eeb57af (diff)
downloadexternal_parameter-framework-19aa05b33990302d2388b8c90eeb71a3509e6320.zip
external_parameter-framework-19aa05b33990302d2388b8c90eeb71a3509e6320.tar.gz
external_parameter-framework-19aa05b33990302d2388b8c90eeb71a3509e6320.tar.bz2
Fix tUINT32_ARRAY index overflow test
This test was using the wrong array size. It leads to false positive. Signed-off-by: Jules Clero <julesx.clero@intel.com>
Diffstat (limited to 'test')
-rw-r--r--test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py2
1 files changed, 1 insertions, 1 deletions
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