-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mfs: seek to 0 before reading in TestTruncateAndWrite
#5262
mfs: seek to 0 before reading in TestTruncateAndWrite
#5262
Conversation
mfs/mfs_test.go
Outdated
data, err := ioutil.ReadAll(fd) | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
if string(data) != "test" { | ||
t.Errorf("read error at read %d, read: %v", i, data) | ||
t.Fatal(fmt.Errorf("read error at read %d, read: %v", i, data)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can just use Fatalf
.
@schomatis so ftruncate in standard unix doesnt touch the current offset of the file descriptor, right? |
No but the write does. However, yeah, this should probably require a seek after the truncate as well. That looks like a different issue. |
License: MIT Signed-off-by: Lucas Molas <schomatis@gmail.com>
Fixed, thanks for the tip! |
Yes, actually the
EDIT: Actually the error is at |
Some sort of republish error at CircleCI but the other tests are passing, RFM. |
mfs: seek to 0 before reading in `TestTruncateAndWrite`
Thanks @schomatis! |
Right now this test isn't failing due to another bug that causes seeking to the end to return to the beginning of the file (#5255) and the read call works, but it would be nice to get this test fixed as it's failing in a refactoring of the DAG reader (#5257).