go-common/library/syscall/syscall_test.go
2019-04-22 02:59:20 +00:00

17 lines
182 B
Go

// +build !windows
package syscall
import (
"testing"
)
func TestSignal(t *testing.T) {
if int(SIGSTOP) != 0x13 {
t.FailNow()
}
if int(SIGXFSZ) != 0x19 {
t.FailNow()
}
}