From: James Nunez Date: Fri, 29 Mar 2019 19:01:54 +0000 (-0600) Subject: LU-10073 tests: stop running smoke test X-Git-Tag: 2.12.53~74 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F34543%2F4;p=fs%2Flustre-release.git LU-10073 tests: stop running smoke test lnet-selftest test smoke is failing at a high rate when tested with ARM clients and when run with Ubuntu clients. Stop running this test for ARM and Ubuntu clients until we find a solution. Test-Parameters: trivial clientarch=aarch64 testlist=lnet-selftest Test-Parameters: clientdistro=ubuntu1804 testlist=lnet-selftest Signed-off-by: James Nunez Change-Id: I5c59b3a5dd42c9b6afcf5e0d1ce17e49efc1b44a Reviewed-on: https://review.whamcloud.com/34543 Tested-by: Jenkins Reviewed-by: Andreas Dilger Tested-by: Maloo Reviewed-by: Sonia Sharma Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/lnet-selftest.sh b/lustre/tests/lnet-selftest.sh index 0c70ae4..10631ca 100755 --- a/lustre/tests/lnet-selftest.sh +++ b/lustre/tests/lnet-selftest.sh @@ -8,8 +8,19 @@ init_test_env $@ . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh} init_logging -# -ALWAYS_EXCEPT="$ALWAYS_EXCEPT $LNET_SELFTEST_EXCEPT" +ALWAYS_EXCEPT="$LNET_SELFTEST_EXCEPT" +if [[ $(uname -m) = aarch64 ]]; then + # bug number for skipped test: LU-10073 + ALWAYS_EXCEPT+=" smoke" +fi + +# Check if running on Ubuntu client +if [ -r /etc/os-release ]; then + if grep -qi ubuntu /etc/os-release; then + # bug number for skipped test: LU-10073 + ALWAYS_EXCEPT+=" smoke" + fi +fi [ x$LST = x ] && skip_env "lst not found LST=$LST"