From: Darrick J. Wong <djwong@xxxxxxxxxx> Fix incorrect usage of unset -- one passes the name of the variable, not the *value* contained within it. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> --- tests/generic/019 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/generic/019 b/tests/generic/019 index 854ba57d..45c91624 100755 --- a/tests/generic/019 +++ b/tests/generic/019 @@ -140,8 +140,8 @@ _workout() kill $fs_pid &> /dev/null wait $fs_pid wait $fio_pid - unset $fs_pid - unset $fio_pid + unset fs_pid + unset fio_pid # We expect that broken FS still can be umounted run_check _scratch_unmount