Skip to content

Commit 8172c8a

Browse files
prakaashkpktniessen
authored andcommitted
test: set module loading error for aix
In test/parallel/test-module-loading-error.js, an attempt is made to load a text file as a native executable. This results in an error message in a platform specific manner. AIX was not included in the list of platforms. This fix introduces the AIX error messages. PR-URL: #14511 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
1 parent 4796fbc commit 8172c8a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/parallel/test-module-loading-error.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ const errorMessagesByPlatform = {
2828
win32: ['%1 is not a valid Win32 application'],
2929
linux: ['file too short', 'Exec format error'],
3030
sunos: ['unknown file type', 'not an ELF file'],
31-
darwin: ['file too short']
31+
darwin: ['file too short'],
32+
aix: ['Cannot load module',
33+
'Cannot run a file that does not have a valid format.']
3234
};
3335
// If we don't know a priori what the error would be, we accept anything.
3436
const errorMessages = errorMessagesByPlatform[process.platform] || [''];

0 commit comments

Comments
 (0)