[Test/Transform/Arithmetic] Remove unused code from checkResult.py
authorWook Song <wook16.song@samsung.com>
Wed, 13 Mar 2019 06:46:34 +0000 (15:46 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Fri, 15 Mar 2019 01:31:42 +0000 (10:31 +0900)
This is a trivial patch that removes unused code from the python script
checking the unit test results.

Signed-off-by: Wook Song <wook16.song@samsung.com>
tests/transform_arithmetic/checkResult.py

index cab20a0..ba6fa0b 100644 (file)
@@ -36,8 +36,6 @@ def testArithmetic (fna, fnb, typeasize, typebsize,typeapack, typebpack, mode, v
   num = lena / typeasize
   if num != (lenb / typebsize):
     return 11
-  limitb = 2 ** (8 * typebsize)
-  maskb = limitb - 1
   value1 = getValue(value1, typeapack)
   value2 = getValue(value2, typebpack)
   if value1 is None or value2 is None: