Skip to content

Commit 5cad82d

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 b7e2175 commit 5cad82d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

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

4-
require('../common');
4+
const common = 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
const v8 = require('v8');
611
const assert = require('assert');
712

0 commit comments

Comments
 (0)