go_study/go-for-study/library/syscall/syscall_windows_test.go

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()
}
}