-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
nvmm
is tested and works fine
#914
Conversation
Signed-off-by: Leonardo Taccari <leot@NetBSD.org>
But |
@iamleot do the unit tests pass, on netbsd ?
|
Yes, |
If I try on a clean checked out source it fails with:
I guess I'm missing something obvious, right? :) |
I have done a
|
After doing a
|
Thanks for checking, I guess the "wheel" is easy to fix (same as darwin) if runtime.GOOS == "darwin" {
assert.Equal(t, user.Group, "wheel")
} else {
assert.Equal(t, user.Group, "root")
} Most likely, also FreeBSD. |
Yeah, I will provide a patch about that in a separate PR (and I can confirm that it fixes all the tests then). |
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.
Thanks
At least on NetBSD/amd64 -current(-ish) it works well.