go-common/library/syscall/syscall_windows_test.go

16 lines
169 B
Go
Raw Normal View History

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