test: check the different error code on IBM i#38159
Closed
dmabupt wants to merge 1 commit intonodejs:masterfrom
dmabupt:ibmi_test_fs_read_type
Closed
test: check the different error code on IBM i#38159dmabupt wants to merge 1 commit intonodejs:masterfrom dmabupt:ibmi_test_fs_read_type
dmabupt wants to merge 1 commit intonodejs:masterfrom
dmabupt:ibmi_test_fs_read_type
Conversation
cjihrig
approved these changes
Apr 9, 2021
| if (err) { | ||
| assert.strictEqual(err.code, 'EFBIG'); | ||
| if (common.isIBMi) | ||
| assert.strictEqual(err.errno, -127); |
Contributor
There was a problem hiding this comment.
What error does 127 map to on IBM i? Should we try to map it in libuv?
Contributor
Author
There was a problem hiding this comment.
It is EOVERFLOW
$ grep 127 /usr/include/errno.h
#define EOVERFLOW 127 /* value too large to be stored in data type */
Member
There was a problem hiding this comment.
What error does 127 map to on IBM i? Should we try to map it in libuv?
@cjihrig PR to add a mapping for EOVERFLOW: libuv/libuv#3145
Contributor
Author
Collaborator
richardlau
approved these changes
Apr 9, 2021
Collaborator
RaisinTen
approved these changes
Apr 9, 2021
RaisinTen
added a commit
to RaisinTen/libuv
that referenced
this pull request
Apr 9, 2021
Collaborator
Contributor
Author
|
landed in db9cf52 |
vtjnash
pushed a commit
to libuv/libuv
that referenced
this pull request
May 13, 2021
Refs: nodejs/node#38159 (comment) PR-URL: #3145 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jameson Nash <vtjnash@gmail.com>
RaisinTen
added a commit
to RaisinTen/node
that referenced
this pull request
May 13, 2021
RaisinTen
added a commit
to RaisinTen/node
that referenced
this pull request
Aug 7, 2021
RaisinTen
added a commit
to RaisinTen/node
that referenced
this pull request
Aug 22, 2021
jasnell
pushed a commit
that referenced
this pull request
Aug 28, 2021
Refs: #38159 (comment) PR-URL: #38675 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
targos
pushed a commit
that referenced
this pull request
Sep 6, 2021
Refs: #38159 (comment) PR-URL: #38675 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
targos
pushed a commit
that referenced
this pull request
Sep 6, 2021
Refs: #38159 (comment) PR-URL: #38675 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
JeffroMF
pushed a commit
to JeffroMF/libuv
that referenced
this pull request
May 16, 2022
Refs: nodejs/node#38159 (comment) PR-URL: libuv#3145 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jameson Nash <vtjnash@gmail.com>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Jul 23, 2025
Refs: nodejs/node#38159 (comment) PR-URL: libuv/libuv#3145 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jameson Nash <vtjnash@gmail.com>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Dec 16, 2025
Refs: nodejs/node#38159 (comment) PR-URL: libuv/libuv#3145 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jameson Nash <vtjnash@gmail.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes: #36925