go-common/library/syscall/syscall_test.go

17 lines
182 B
Go
Raw Permalink Normal View History

2019-04-22 10:49:16 +00:00
// +build !windows
package syscall
import (
"testing"
)
func TestSignal(t *testing.T) {
if int(SIGSTOP) != 0x13 {
t.FailNow()
}
if int(SIGXFSZ) != 0x19 {
t.FailNow()
}
}