Update gdtoolkit to version 4.2.2

This commit is contained in:
Leroy Hopson 2024-01-06 22:34:24 +13:00
parent 11ed797005
commit 893c768f75
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
12 changed files with 62 additions and 84 deletions

View file

@ -149,16 +149,19 @@ class Helper:
)
var python_path = output[0].strip_edges()
var exit_code = OS.execute(
python_path,
[
"-c",
(
"import struct, fcntl, termios; print(struct.unpack('HH', fcntl.ioctl(%d, termios.TIOCGWINSZ, '1234')))"
% fd
)
],
output
var exit_code = (
OS
. execute(
python_path,
[
"-c",
(
"import struct, fcntl, termios; print(struct.unpack('HH', fcntl.ioctl(%d, termios.TIOCGWINSZ, '1234')))"
% fd
)
],
output
)
)
assert(exit_code == 0, "Failed to run python command for this test.")