syscall_test.go 182 B

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