Skip to content

Commit

Permalink
Fixed test_not_existed_dir_obj test condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ggtakec committed Sep 24, 2023
1 parent 01b3caa commit 997ae67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration-test-main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2664,7 +2664,7 @@ function add_all_tests {
add_tests test_upload_sparsefile
add_tests test_mix_upload_entities
# 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
fi
add_tests test_ut_ossfs
Expand Down

0 comments on commit 997ae67

Please sign in to comment.