git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db0e952
)
app/test: add NULL operation for qat
author
Deepak Kumar Jain
<deepak.k.jain@intel.com>
Fri, 16 Sep 2016 08:57:17 +0000
(09:57 +0100)
committer
Pablo de Lara
<pablo.de.lara.guarch@intel.com>
Tue, 4 Oct 2016 18:41:09 +0000
(20:41 +0200)
Added NULL algorithm to test file for Intel(R) QuickAssist
Technology Driver.
Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
app/test/test_cryptodev.c
patch
|
blob
|
history
diff --git
a/app/test/test_cryptodev.c
b/app/test/test_cryptodev.c
index
8553759
..
67ca912
100644
(file)
--- a/
app/test/test_cryptodev.c
+++ b/
app/test/test_cryptodev.c
@@
-4136,6
+4136,16
@@
static struct unit_test_suite cryptodev_qat_testsuite = {
TEST_CASE_ST(ut_setup, ut_teardown,
test_MD5_HMAC_verify_case_2),
+ /** NULL tests */
+ TEST_CASE_ST(ut_setup, ut_teardown,
+ test_null_auth_only_operation),
+ TEST_CASE_ST(ut_setup, ut_teardown,
+ test_null_cipher_only_operation),
+ TEST_CASE_ST(ut_setup, ut_teardown,
+ test_null_cipher_auth_operation),
+ TEST_CASE_ST(ut_setup, ut_teardown,
+ test_null_auth_cipher_operation),
+
TEST_CASES_END() /**< NULL terminate unit test array */
}
};