Conversation
|
GNU testsuite comparison: |
|
@YDX-2147483647 @wu0lss4j Could you test with this branch if that fixes your problem ? |
|
Thank you for working on it! Here're the results for ❯ cargo r -r -- sha256sum a.fake-ttf
1c671d7322d49cd2726475f4b8a8b50f27b454789e23a31c6ac14014740d8e58 a.fake-ttf
❯ cargo r -r -- sha256sum --text a.fake-ttf
1c671d7322d49cd2726475f4b8a8b50f27b454789e23a31c6ac14014740d8e58 a.fake-ttf
❯ cargo r -r -- sha256sum --binary a.fake-ttf
1c671d7322d49cd2726475f4b8a8b50f27b454789e23a31c6ac14014740d8e58 *a.fake-ttf
❯ cargo r -r -- sha256sum --text a.fake-ttf | cargo r -r -- sha256sum --check
a.fake-ttf: OK
❯ cargo r -r -- sha256sum --binary a.fake-ttf | cargo r -r -- sha256sum --check
a.fake-ttf: OKThis PR fixes the problem of ❯ coreutils --version
coreutils 0.5.0 (multi-call binary)
❯ coreutils sha256sum a.fake-ttf
1c671d7322d49cd2726475f4b8a8b50f27b454789e23a31c6ac14014740d8e58 *a.fake-ttf # 👈 I don't think `*` should be removed
❯ coreutils sha256sum --text a.fake-ttf
73c0a22f7ed1c54ebde921712ced33d9458975cd86e9fe4757257fdd6293e512 a.fake-ttf # 👈 I think this is the correct output, and should not be changed.
❯ coreutils sha256sum --binary a.fake-ttf
1c671d7322d49cd2726475f4b8a8b50f27b454789e23a31c6ac14014740d8e58 *a.fake-ttf # Unchanged and okayEdit: Should the following fail? ❯ coreutils sha256sum --text a.fake-ttf | cargo r -r sha256sum --check
a.fake-ttf: FAILED
sha256sum: WARNING: 1 computed checksum did NOT match |
|
This PR is not the reason for this unwanted behavior, sicne I only changed a piece of code that is run in |
|
Actually, that reopens the debate of The "unwanted" behavior for At the time, we decided to ignore |
6f0a2f7 to
f5fc1a5
Compare
|
GNU testsuite comparison: |
Attempt to fix #6655