Fixed test_not_existed_dir_obj test condition

This commit is contained in:
Takeshi Nakatani 2023-09-24 13:08:23 +00:00 committed by Andrew Gaul
parent 54293a66b3
commit 645c10a3c3

View File

@ -2664,7 +2664,7 @@ function add_all_tests {
add_tests test_upload_sparsefile add_tests test_upload_sparsefile
add_tests test_mix_upload_entities add_tests test_mix_upload_entities
# TODO: investigate why only Alpine cannot see the implicit directory objects. # TODO: investigate why only Alpine cannot see the implicit directory objects.
if grep -q -i -e 'ID="alpine"' /etc/os-release; then if ! test -f /etc/os-release || ! grep -q -i -e 'ID=alpine' -e 'ID="alpine"' /etc/os-release; then
add_tests test_not_existed_dir_obj add_tests test_not_existed_dir_obj
fi fi
add_tests test_ut_ossfs add_tests test_ut_ossfs