summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-argv-0.js
blob: ad078d02b41b030025c0c036c9a09cb41787d253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';
require('../common');
const path = require('path');
const assert = require('assert');
const spawn = require('child_process').spawn;

if (process.argv[2] !== 'child') {
  var child = spawn(process.execPath, [__filename, 'child'], {
    cwd: path.dirname(process.execPath)
  });

  var childArgv0 = '';
  child.stdout.on('data', function(chunk) {
    childArgv0 += chunk;
  });
  process.on('exit', function() {
    assert.equal(childArgv0, process.execPath);
  });
} else {
  process.stdout.write(process.argv[0]);
}