[dts] [PATCH V1 1/3] add fips environment variable

Yao, BingX Y bingx.y.yao at intel.com
Thu Oct 10 07:36:43 CEST 2019


Tested-by: Yao, BingX Y <bingx.y.yao at intel.com>

-----Original Message-----
From: Yao, BingX Y 
Sent: Tuesday, October 8, 2019 1:29 PM
To: dts at dpdk.org
Cc: Yao, BingX Y <bingx.y.yao at intel.com>
Subject: [dts][PATCH V1 1/3] add fips environment variable

add fips_cryptodev environment variable

Signed-off-by: yaobing <bingx.y.yao at intel.com>
---
 tests/cryptodev_common.py | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/tests/cryptodev_common.py b/tests/cryptodev_common.py index 2e86bca..f521fbe 100644
--- a/tests/cryptodev_common.py
+++ b/tests/cryptodev_common.py
@@ -44,12 +44,30 @@ def build_dpdk_with_cryptodev(test_case):
     if "kasumi_lib_path" in test_case.get_suite_cfg():
         kasumi_lib_path = test_case.get_suite_cfg()["kasumi_lib_path"]
 
+    fip_cflags_path = "'-I/opt/openssl-fips-2.0.16/include/'"
+    if "fip_cflags_path" in test_case.get_suite_cfg():
+        fip_cflags_path = test_case.get_suite_cfg()["fip_cflags_path"]
+
+    fip_ldflags_path = "'-L/opt/openssl-fips-2.0.16/'"
+    if "fip_ldflags_path" in test_case.get_suite_cfg():
+        fip_cflags_path = test_case.get_suite_cfg()["fip_ldflags_path"]
+
+    fip_library_path = "/opt/openssl-fips-2.0.16/"
+    if "fip_library_path" in test_case.get_suite_cfg():
+        fip_cflags_path = test_case.get_suite_cfg()["fip_library_path"]
+
     test_case.dut.send_expect(
         "export LIBSSO_SNOW3G_PATH={}".format(snow3g_lib_path), "#")
     test_case.dut.send_expect(
         "export LIBSSO_ZUC_PATH={}".format(zuc_lib_path), "#")
     test_case.dut.send_expect(
         "export LIBSSO_KASUMI_PATH={}".format(kasumi_lib_path), "#")
+    test_case.dut.send_expect(
+        "export EXTRA_CFLAGS={}".format(fip_cflags_path), "#")
+    test_case.dut.send_expect(
+        "export EXTRA_LDFLAGS={}".format(fip_ldflags_path), "#")
+    test_case.dut.send_expect(
+        "export LD_LIBRARY_PATH={}".format(fip_library_path), "#")
 
     test_case.dut.send_expect(
         "sed -i 's/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n$/CONFIG_RTE_LIBRTE_PMD_AESNI_MB=y/' config/common_base", "# ")
--
2.17.2

-------------- next part --------------
A non-text attachment was scrubbed...
Name: FipCryptodev.log
Type: application/octet-stream
Size: 831602 bytes
Desc: FipCryptodev.log
URL: <http://mails.dpdk.org/archives/dts/attachments/20191010/53bca83e/attachment.obj>


More information about the dts mailing list