Skip to content

Commit 9940dc3

Browse files
richardlautargos
authored andcommitted
test: skip test-v8-serialize-leak on IBM i
On IBM i rss memory information is not available and always returns `0`. PR-URL: #43511 Refs: #43509 Refs: libuv/libuv#2732 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 17b92f0 commit 9940dc3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

‎test/parallel/test-v8-serialize-leak.js‎

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
'use strict';
22
// Flags: --expose-gc
33

4-
require('../common');
4+
constcommon=require('../common');
5+
6+
// On IBMi, the rss memory always returns zero
7+
if(common.isIBMi)
8+
common.skip('On IBMi, the rss memory always returns zero');
9+
510
constv8=require('v8');
611
constassert=require('assert');
712

0 commit comments

Comments
(0)