Replace Gut with WAT

Gut was freezing on some integration tests. It was also entering an
infinite loop after exiting (even after closing Godot and VSCode) which
caused a `godot.log` file in app_userdata to keep growing until my hard
drive was full.
This commit is contained in:
Leroy Hopson 2021-07-03 20:54:34 +07:00
parent 39702646dc
commit 115521f645
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
10 changed files with 165 additions and 162 deletions

View file

@ -97,6 +97,10 @@ func fork(
return OK
func open(cols: int = DEFAULT_COLS, rows: int = DEFAULT_ROWS) -> Array:
return PTYUnix.new().open(cols, rows)
func _on_pipe_data_received(data):
emit_signal("data_received", data)