mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 09:57:51 +08:00
8 lines
192 B
Go
8 lines
192 B
Go
package testutil
|
|
|
|
// Umask sets the umask for the duration of the test, and restores it afterwards.
|
|
func Umask(c Cleanuper, m int) {
|
|
save := umask(m)
|
|
c.Cleanup(func() { _ = umask(save) })
|
|
}
|