mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-24 21:06:02 +03:00
[PR #2732] [MERGED] Separate pjdfstest tests by command to make the log units smaller #2751
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#2751
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/s3fs-fuse/s3fs-fuse/pull/2732
Author: @ggtakec
Created: 9/8/2025
Status: ✅ Merged
Merged: 9/8/2025
Merged by: @gaul
Base:
master← Head:update/test_pjdfstest📝 Commits (1)
c1ceac7Separate pjdfstest tests by command to make the log units smaller📊 Changes
1 file changed (+131 additions, -34 deletions)
View changed files
📝
test/integration-test-main.sh(+131 -34)📄 Description
Relevant Issue (if applicable)
n/a
Details
Currently, when a Github Actions(CI) test fails, we use
filter-suite-log.shto extract only the failed test items from the log.(The execution log of
small-integration-test.shis huge, and if we were to output that log in the event of a failure, it would not be viewable on github.com. So that, we usefilter-suite-log.sh.)I recently noticed that this failure log has been getting larger.
This was occurring because the
test_pjdfstesttest did not have adescribestatement.(
filter-suite-log.shdetects and filters strings output to the log usingdescribestatements.)(1) Therefore, this PR adds this
describestatement.(2) Also, the
test_pjdfstesttest is a single test item, which is a large unit. Therefore, I have also separated the test items withintest_pjdfstest.This PR allows us to separate the items and logs in the event of a test failure into smaller units.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.