diff options
| author | Jules Clero <julesx.clero@intel.com> | 2015-02-11 09:42:20 +0100 | 
|---|---|---|
| committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:39:12 -0700 | 
| commit | 19aa05b33990302d2388b8c90eeb71a3509e6320 (patch) | |
| tree | bae705f20690f4b697f8bf355d9b6bd2e22ee346 | |
| parent | d770f7a4082873887833d886fb8aeacf1eeb57af (diff) | |
| download | external_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>
| -rw-r--r-- | test/functional-tests/PfwTestCase/Types/tUINT32_ARRAY.py | 2 | 
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  | 
