Skip to content

Commit c412d38

Browse files
richardlauguangwong
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: nodejs/node#43511 Refs: nodejs/node#43509 Refs: libuv/libuv#2732 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent d9413e2 commit c412d38

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)