Whamcloud - gitweb
LU-10073 tests: stop running smoke test 43/34543/4
authorJames Nunez <jnunez@whamcloud.com>
Fri, 29 Mar 2019 19:01:54 +0000 (13:01 -0600)
committerOleg Drokin <green@whamcloud.com>
Mon, 8 Apr 2019 05:31:34 +0000 (05:31 +0000)
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 <jnunez@whamcloud.com>
Change-Id: I5c59b3a5dd42c9b6afcf5e0d1ce17e49efc1b44a
Reviewed-on: https://review.whamcloud.com/34543
Tested-by: Jenkins
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Sonia Sharma <sharmaso@whamcloud.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/tests/lnet-selftest.sh

index 0c70ae4..10631ca 100755 (executable)
@@ -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"