summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Gohad <tushar.gohad@intel.com>2015-03-01 10:24:01 -0700
committerTushar Gohad <tushar.gohad@intel.com>2015-03-01 10:24:01 -0700
commit3f9994681a032dbc1688822ce53e80fd2dc50acf (patch)
tree987aa82d38c45de0a1a738e8ec8a39af47adf9a2
parente74702e7bcae259870b0c5e931a68682d341a58b (diff)
downloadpyeclib-3f9994681a032dbc1688822ce53e80fd2dc50acf.tar.gz
Add missing test for isa_l_rs_vand
-rw-r--r--test/test_pyeclib_c.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_pyeclib_c.py b/test/test_pyeclib_c.py
index 8c4f39e..ee54df7 100644
--- a/test/test_pyeclib_c.py
+++ b/test/test_pyeclib_c.py
@@ -59,7 +59,9 @@ class TestPyECLib(unittest.TestCase):
self.iterations = 100
# EC algorithm and config parameters
- self.rs_types = [(PyECLib_EC_Types.jerasure_rs_vand), (PyECLib_EC_Types.jerasure_rs_cauchy)]
+ self.rs_types = [(PyECLib_EC_Types.jerasure_rs_vand),
+ (PyECLib_EC_Types.jerasure_rs_cauchy),
+ (PyECLib_EC_Types.isa_l_rs_vand)]
self.xor_types = [(PyECLib_EC_Types.flat_xor_hd, 12, 6, 4),
(PyECLib_EC_Types.flat_xor_hd, 10, 5, 4),
(PyECLib_EC_Types.flat_xor_hd, 10, 5, 3)]