Do not call exit in individual test functions (#1985)
This could prevent the test runner from reporting failures.
This commit is contained in:
@ -794,7 +794,7 @@ function test_extended_attributes {
|
||||
|
||||
# remove value
|
||||
del_xattr key1 "${TEST_TEXT_FILE}"
|
||||
get_xattr key1 "${TEST_TEXT_FILE}" && exit 1
|
||||
get_xattr key1 "${TEST_TEXT_FILE}" && return 1
|
||||
get_xattr key2 "${TEST_TEXT_FILE}" | grep -q '^value2$'
|
||||
|
||||
rm_test_file
|
||||
|
||||
Reference in New Issue
Block a user