-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
[v8.x] Backport aix test fixes to v8.x #29599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
andrewhughes101
wants to merge
5
commits into
nodejs:v8.x-staging
from
andrewhughes101:backport-aix-to-v8.x
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
84e4d05
test: skip tests related to CI failures on AIX
sam-github 3ebdd70
test: skip stringbytes-external-exceed-max on AIX
sam-github f8b2ffd
test: fix pty test hangs on aix
bnoordhuis 3c5a25f
test: specialize OOM check for AIX
sam-github 9209f48
test: unskip tests that now pass on AIX
sam-github File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
prefix addons | ||
|
||
[true] # This section applies to all platforms | ||
|
||
[$system==aix] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ prefix message | |
|
||
[$system==freebsd] | ||
|
||
[$system==aix] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
import errno | ||
import os | ||
import pty | ||
import select | ||
import signal | ||
import sys | ||
import termios | ||
|
||
STDIN = 0 | ||
STDOUT = 1 | ||
STDERR = 2 | ||
|
||
|
||
def pipe(sfd, dfd): | ||
try: | ||
data = os.read(sfd, 256) | ||
except OSError as e: | ||
if e.errno != errno.EIO: | ||
raise | ||
return True # EOF | ||
|
||
if not data: | ||
return True # EOF | ||
|
||
if dfd == STDOUT: | ||
# Work around platform quirks. Some platforms echo ^D as \x04 | ||
# (AIX, BSDs) and some don't (Linux). | ||
filt = lambda c: ord(c) > 31 or c in '\t\n\r\f' | ||
data = filter(filt, data) | ||
|
||
while data: | ||
try: | ||
n = os.write(dfd, data) | ||
except OSError as e: | ||
if e.errno != errno.EIO: | ||
raise | ||
return True # EOF | ||
data = data[n:] | ||
|
||
|
||
if __name__ == '__main__': | ||
argv = sys.argv[1:] | ||
|
||
# Make select() interruptable by SIGCHLD. | ||
signal.signal(signal.SIGCHLD, lambda nr, _: None) | ||
|
||
master_fd, slave_fd = pty.openpty() | ||
assert master_fd > STDIN | ||
|
||
mode = termios.tcgetattr(slave_fd) | ||
# Don't translate \n to \r\n. | ||
mode[1] = mode[1] & ~termios.ONLCR # oflag | ||
# Disable ECHOCTL. It's a BSD-ism that echoes e.g. \x04 as ^D but it | ||
# doesn't work on platforms like AIX and Linux. I checked Linux's tty | ||
# driver and it's a no-op, the driver is just oblivious to the flag. | ||
mode[3] = mode[3] & ~termios.ECHOCTL # lflag | ||
termios.tcsetattr(slave_fd, termios.TCSANOW, mode) | ||
|
||
pid = os.fork() | ||
if not pid: | ||
os.setsid() | ||
os.close(master_fd) | ||
|
||
# Ensure the pty is a controlling tty. | ||
name = os.ttyname(slave_fd) | ||
fd = os.open(name, os.O_RDWR) | ||
os.dup2(fd, slave_fd) | ||
os.close(fd) | ||
|
||
os.dup2(slave_fd, STDIN) | ||
os.dup2(slave_fd, STDOUT) | ||
os.dup2(slave_fd, STDERR) | ||
|
||
if slave_fd > STDERR: | ||
os.close(slave_fd) | ||
|
||
os.execve(argv[0], argv, os.environ) | ||
raise Exception('unreachable') | ||
|
||
os.close(slave_fd) | ||
|
||
fds = [STDIN, master_fd] | ||
while fds: | ||
try: | ||
rfds, _, _ = select.select(fds, [], []) | ||
except select.error as e: | ||
if e[0] != errno.EINTR: | ||
raise | ||
if pid == os.waitpid(pid, os.WNOHANG)[0]: | ||
break | ||
|
||
if STDIN in rfds: | ||
if pipe(STDIN, master_fd): | ||
fds.remove(STDIN) | ||
|
||
if master_fd in rfds: | ||
if pipe(master_fd, STDOUT): | ||
break |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
Hello! | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
Hello! | ||
<Buffer 48 65 6c 6c 6f 21 0a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.