Skip to content

Commit

Permalink
test: use faster variant for rss in test-crypto-dh-leak
Browse files Browse the repository at this point in the history
PR-URL: #36766
Refs: #34291
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
PoojaDurgad authored and BethGriggs committed Aug 12, 2021
1 parent 65195ab commit df594e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-crypto-dh-leak.js
Expand Up @@ -10,7 +10,7 @@ if (process.config.variables.asan)
const assert = require('assert');
const crypto = require('crypto');

const before = process.memoryUsage().rss;
const before = process.memoryUsage.rss();
{
const dh = crypto.createDiffieHellman(common.hasFipsCrypto ? 1024 : 256);
const publicKey = dh.generateKeys();
Expand All @@ -21,7 +21,7 @@ const before = process.memoryUsage().rss;
}
}
global.gc();
const after = process.memoryUsage().rss;
const after = process.memoryUsage.rss();

// RSS should stay the same, ceteris paribus, but allow for
// some slop because V8 mallocs memory during execution.
Expand Down

0 comments on commit df594e7

Please sign in to comment.