Skip to content

Commit

Permalink
test: skip test-v8-serialize-leak on IBM i
Browse files Browse the repository at this point in the history
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 <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
richardlau committed Jun 22, 2022
1 parent a7c9130 commit d81d426
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/parallel/test-v8-serialize-leak.js
@@ -1,7 +1,12 @@
'use strict';
// Flags: --expose-gc

require('../common');
const common = require('../common');

// On IBMi, the rss memory always returns zero
if (common.isIBMi)
common.skip('On IBMi, the rss memory always returns zero');

const v8 = require('v8');
const assert = require('assert');

Expand Down

0 comments on commit d81d426

Please sign in to comment.