]> zoso.dev Git - buffer.git/commitdiff
Add `printSkipMessage()` stub
authorVolker Mische <volker.mische@gmail.com>
Fri, 19 Jan 2018 00:10:01 +0000 (01:10 +0100)
committerVolker Mische <volker.mische@gmail.com>
Sun, 21 Jan 2018 02:01:01 +0000 (03:01 +0100)
We don't want to print anything, hence `printSkipMessage()` is just
a no-op to make the tests without changes pass.

test/common.js
test/node/test-buffer-alloc.js

index fec2d19e6c8d09959301b5e07d6bcd6353f6b94f..c71f42b730a9275cf4842f1a815339e09c97de21 100644 (file)
@@ -83,6 +83,8 @@ function _mustCallInner(fn, criteria = 1, field) {
   };
 }
 
+exports.printSkipMessage = function(msg) {}
+
 // Useful for testing expected internal/error objects
 exports.expectsError = function expectsError(fn, settings, exact) {
   if (typeof fn !== 'function') {
index a4eee73979c444293a33732c6db1aca01eced3a5..d34652143fa32d50e8b47217296d05a9ab5383aa 100644 (file)
@@ -915,7 +915,7 @@ common.expectsError(
     assert.strictEqual(c[i], i);
   }
 }
-/*
+
 if (common.hasCrypto) { // eslint-disable-line crypto-check
   // Test truncation after decode
   var crypto = require('crypto');
@@ -930,7 +930,7 @@ if (common.hasCrypto) { // eslint-disable-line crypto-check
 } else {
   common.printSkipMessage('missing crypto');
 }
-
+/*
 var ps = Buffer.poolSize;
 Buffer.poolSize = 0;
 assert(Buffer.allocUnsafe(1).parent instanceof ArrayBuffer);