Whamcloud - gitweb
LU-16694 tests: remove deprecated sanity/62 97/51097/2
authorTimothy Day <timday@amazon.com>
Tue, 23 May 2023 14:11:24 +0000 (14:11 +0000)
committerOleg Drokin <green@whamcloud.com>
Tue, 20 Jun 2023 03:48:07 +0000 (03:48 +0000)
This test was disabled many years ago. It doesn't seem useful
enough to reenable it. Hence, remove it.

Test-Parameters: trivial
Signed-off-by: Timothy Day <timday@amazon.com>
Change-Id: I1a27a1dc271f76358136efb81e793c81e971f037
Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/51097
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: Arshad Hussain <arshad.hussain@aeoncomputing.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/tests/sanity.sh

index aa2e05d..12a086f 100755 (executable)
@@ -9283,21 +9283,6 @@ test_61b() {
 }
 run_test 61b "mmap() of unstriped file is successful"
 
-# bug 2330 - insufficient obd_match error checking causes LBUG
-test_62() {
-       [ $PARALLEL == "yes" ] && skip "skip parallel run"
-
-       f="$DIR/f62"
-       echo foo > $f
-       cancel_lru_locks osc
-       lctl set_param fail_loc=0x405
-       cat $f && error "cat succeeded, expect -EIO"
-       lctl set_param fail_loc=0
-}
-# This test is now irrelevant (as of bug 10718 inclusion), we no longer
-# match every page all of the time.
-#run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
-
 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
 # Though this test is irrelevant anymore, it helped to reveal some
 # other grant bugs (LU-4482), let's keep it.