We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b92f0 commit 9940dc3Copy full SHA for 9940dc3
test/parallel/test-v8-serialize-leak.js
@@ -1,7 +1,12 @@
1
'use strict';
2
// Flags: --expose-gc
3
4
-require('../common');
+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
10
const v8 = require('v8');
11
const assert = require('assert');
12
0 commit comments