aboutsummaryrefslogtreecommitdiffhomepage
path: root/hst/grp_pwd_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hst/grp_pwd_test.go')
-rw-r--r--hst/grp_pwd_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/hst/grp_pwd_test.go b/hst/grp_pwd_test.go
index 2d01c122..c482f5fd 100644
--- a/hst/grp_pwd_test.go
+++ b/hst/grp_pwd_test.go
@@ -20,6 +20,9 @@ func TestUIDString(t *testing.T) {
{hst.IsolatedStart + hst.IdentityStart, "u0_i0"}, // isolatedStart
{(hst.RangeSize-1)*hst.UserOffset + hst.IsolatedEnd, "u9999_i9999"}, // isolatedEnd
+ {hst.ToUser[uint32](10, 127), "u10_a127"},
+ {hst.ToUser[uint32](11, 127), "u11_a127"},
+
{0, "0"}, // out of bounds
}
for _, tc := range testCases {