summaryrefslogtreecommitdiff
path: root/test/parallel/test-err-name-deprecation.js
blob: 58dff38364c81846d20bdbf9c0501f94e577fd4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';
const common = require('../common');

// Flags: --pending-deprecation

common.expectWarning({
  DeprecationWarning: [
    ['process.binding() is deprecated. Please use public APIs instead.',
     'DEP0111'],
    ['Directly calling process.binding(\'uv\').errname(<val>) is being ' +
     'deprecated. Please make sure to use util.getSystemErrorName() instead.',
     'DEP0119']
  ]
});

process.binding('uv').errname(-1);