mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-06-29 10:45:31 +02:00
added windows pty support
This commit is contained in:
parent
bd26137e78
commit
f3820365c6
23 changed files with 1478 additions and 695 deletions
|
@ -64,18 +64,18 @@ class TestInterface:
|
|||
# Enums.
|
||||
|
||||
func test_has_enum_signal():
|
||||
assert_eq(described_class.SIGNAL_SIGHUP, 1)
|
||||
assert_eq(described_class.SIGNAL_SIGINT, 2)
|
||||
assert_eq(described_class.SIGNAL_SIGQUIT, 3)
|
||||
assert_eq(described_class.SIGNAL_SIGILL, 4)
|
||||
assert_eq(described_class.SIGNAL_SIGTRAP, 5)
|
||||
assert_eq(described_class.SIGNAL_SIGABRT, 6)
|
||||
assert_eq(described_class.SIGNAL_SIGFPE, 8)
|
||||
assert_eq(described_class.SIGNAL_SIGKILL, 9)
|
||||
assert_eq(described_class.SIGNAL_SIGSEGV, 11)
|
||||
assert_eq(described_class.SIGNAL_SIGPIPE, 13)
|
||||
assert_eq(described_class.SIGNAL_SIGALRM, 14)
|
||||
assert_eq(described_class.SIGNAL_SIGTERM, 15)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGHUP, 1)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGINT, 2)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGQUIT, 3)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGILL, 4)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGTRAP, 5)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGABRT, 6)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGFPE, 8)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGKILL, 9)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGSEGV, 11)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGPIPE, 13)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGALRM, 14)
|
||||
assert_eq(described_class.IPCSIGNAL_SIGTERM, 15)
|
||||
|
||||
## Other tests.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue