[dpdk-dev] [PATCH v4 4/5] ci: run tests even without hugepage
David Marchand
david.marchand at redhat.com
Mon Mar 23 20:59:25 CET 2020
From: Ruifeng Wang <ruifeng.wang at arm.com>
As fast-tests suite generated with only applicable cases included,
hugepage is not a mandatory to run the test.
Ignore the result of hugepage set up, so that validation in environment
without hugepage can proceed.
Signed-off-by: Ruifeng Wang <ruifeng.wang at arm.com>
Reviewed-by: Gavin Hu <gavin.hu at arm.com>
Acked-by: Aaron Conole <aconole at redhat.com>
---
.ci/linux-setup.sh | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/.ci/linux-setup.sh b/.ci/linux-setup.sh
index 2b07d1e0b2..5d3089cadd 100755
--- a/.ci/linux-setup.sh
+++ b/.ci/linux-setup.sh
@@ -3,10 +3,7 @@
# need to install as 'root' since some of the unit tests won't run without it
sudo python3 -m pip install --upgrade 'meson==0.47.1'
-# skip hugepage settings if tests will not run
-if [ "$RUN_TESTS" = "1" ]; then
- # setup hugepages
- cat /proc/meminfo
- sudo sh -c 'echo 1024 > /proc/sys/vm/nr_hugepages'
- cat /proc/meminfo
-fi
+# setup hugepages. error ignored because having hugepage is not mandatory.
+cat /proc/meminfo
+sudo sh -c 'echo 1024 > /proc/sys/vm/nr_hugepages' || true
+cat /proc/meminfo
--
2.23.0
More information about the dev
mailing list