summaryrefslogtreecommitdiff
path: root/test/tick-processor/util.js
blob: 6d118b7c38bc66e88771c124df0a6caffacca3f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'use strict';

// Utilities for the tick-processor tests
const {
  isWindows,
  isSunOS,
  isAIX,
  isLinuxPPCBE,
  isFreeBSD,
} = require('../common');

module.exports = {
  isCPPSymbolsNotMapped: isWindows ||
                         isSunOS ||
                         isAIX ||
                         isLinuxPPCBE ||
                         isFreeBSD,
};