test/crypto: fix number of queue pairs
authorFiona Trahe <fiona.trahe@intel.com>
Sat, 22 Sep 2018 13:33:36 +0000 (14:33 +0100)
committerAkhil Goyal <akhil.goyal@nxp.com>
Thu, 27 Sep 2018 11:41:05 +0000 (13:41 +0200)
commit738ad7b42b63fc5067419bf609296f2c4a6a0cb0
tree797d8efb46a8b7cf296b472ae1bf0ed3956933ca
parent78c5ea91329ee9e16825c92ba94c2bcfd764e080
test/crypto: fix number of queue pairs

Some of the tests use a QAT-specific value (2) for
maximum nr of queue pairs to create valid/invalid test cases.
This has accidentally worked ok as default max_qps for all PMDs
is larger. It is incorrect however and would fail if a device
had a max lower than the QAT value.
Instead use the value returned by the PMD in the
rte_cryptodev_get_info query, this value is stored in the ts_params.

Fixes: 202d375c60bc ("app/test: add cryptodev unit and performance tests")
Cc: stable@dpdk.org
Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
test/test/test_cryptodev.c