syscall_windows_test.go 169 B

123456789101112131415
  1. package syscall
  2. import (
  3. "log"
  4. "testing"
  5. )
  6. func TestSignal(t *testing.T) {
  7. if int(SIGSTOP) != 0x19 {
  8. t.FailNow()
  9. }
  10. if int(SIGXFSZ) != 0x25 {
  11. t.FailNow()
  12. }
  13. }