-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
FrozenDueToAgeNeedsFixThe path to resolution is known, but the work has not been done.The path to resolution is known, but the work has not been done.TestingAn issue that has been verified to require only test changes, not just a test failure.An issue that has been verified to require only test changes, not just a test failure.help wanted
Milestone
Description
unix/mkmerge.go was updated in CL 296889 to add //go:build lines (#41184).
That caused the test in unix/mkmerge_test.go to start failing, but nobody noticed because mkmerge_test.go itself has the ignore constraint — it must be run explicitly to run it at all, and the Go builders do not know to do that.
Probably the simplest solution is to factor mkmerge.go out into a proper package (perhaps x/sys/unix/internal/mkmerge?), in which case its test will be run automatically by the builders.
Another option would be to add a Test function in x/sys/unix itself that runs go test mkmerge.go mkmerge_test.go as a subprocess.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsFixThe path to resolution is known, but the work has not been done.The path to resolution is known, but the work has not been done.TestingAn issue that has been verified to require only test changes, not just a test failure.An issue that has been verified to require only test changes, not just a test failure.help wanted