From: Kir Kolyshkin Date: Mon, 1 Jul 2024 19:41:56 +0000 (-0700) Subject: os: add TODO about removing test exception X-Git-Tag: go1.23rc2~2^2~29 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=09aeb6e33a;p=gostls13.git os: add TODO about removing test exception TestChtimesOmit excludes the failure on DragonFly BSD when both atime and mtime are omitted. The relevant Dragonfly BSD bug is now fixed in git (see [1]). Add a TODO comment to remove the exclusion from the test once the fix is generally available. This comment also addresses the question why the exception exists. Amends CL 591535. [1]: https://github.com/DragonFlyBSD/DragonFlyBSD/commit/c7c71870ed0 Change-Id: I3b53582301d44feb76b53788aa337c380ba82592 Reviewed-on: https://go-review.googlesource.com/c/go/+/595958 Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI Reviewed-by: Than McIntosh --- diff --git a/src/os/os_test.go b/src/os/os_test.go index 9519aa0fc6..878974384d 100644 --- a/src/os/os_test.go +++ b/src/os/os_test.go @@ -1440,6 +1440,9 @@ func testChtimesOmit(t *testing.T, omitAt, omitMt bool) { gotAtime := Atime(fs) gotMtime := fs.ModTime() + // TODO: remove the dragonfly omitAt && omitMt exceptions below once the + // fix (https://github.com/DragonFlyBSD/DragonFlyBSD/commit/c7c71870ed0) + // is available generally and on CI runners. if !gotAtime.Equal(wantAtime) { errormsg := fmt.Sprintf("atime mismatch, got: %q, want: %q", gotAtime, wantAtime) switch runtime.GOOS {