mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
17 lines
182 B
Go
17 lines
182 B
Go
|
|
// +build !windows
|
||
|
|
|
||
|
|
package syscall
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestSignal(t *testing.T) {
|
||
|
|
if int(SIGSTOP) != 0x13 {
|
||
|
|
t.FailNow()
|
||
|
|
}
|
||
|
|
if int(SIGXFSZ) != 0x19 {
|
||
|
|
t.FailNow()
|
||
|
|
}
|
||
|
|
}
|