go-common/library/syscall/syscall_windows_test.go
2019-04-22 18:49:16 +08:00

16 lines
169 B
Go

package syscall
import (
"log"
"testing"
)
func TestSignal(t *testing.T) {
if int(SIGSTOP) != 0x19 {
t.FailNow()
}
if int(SIGXFSZ) != 0x25 {
t.FailNow()
}
}