aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/sysconf_test.go
blob: b73f2d08821793c79687ab92a6fff8ea781ea737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package app

import "testing"

const (
	_POSIX_LOGIN_NAME_MAX = 9
)

func TestSysconf(t *testing.T) {
	t.Run("LOGIN_NAME_MAX", func(t *testing.T) {
		if got := sysconf(_SC_LOGIN_NAME_MAX); got < _POSIX_LOGIN_NAME_MAX {
			t.Errorf("sysconf(_SC_LOGIN_NAME_MAX): %d < _POSIX_LOGIN_NAME_MAX", got)
		}
	})
}