git ssb

0+

cel-desktop / ssb-pkg



Tree: ca90b5ca0579ebdcc0635288bce4978e3fb200f5

Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-50-bakery-3 / main.js

922 bytesRaw
1#!/usr/bin/env node
2
3'use strict';
4
5const path = require('path');
6const assert = require('assert');
7const utils = require('../utils.js');
8
9assert(!module.parent);
10assert(__dirname === process.cwd());
11
12const target = process.argv[2] || 'host';
13const input = './test-x-index.js';
14const output = './run-time/test-output.exe';
15
16let left, right;
17utils.mkdirp.sync(path.dirname(output));
18
19left = utils.spawn.sync(
20 'node', [ '--v8-options' ],
21 { cwd: path.dirname(input) }
22);
23
24utils.pkg.sync([
25 '--target', target,
26 '--output', output, input
27]);
28
29right = utils.spawn.sync(
30 './' + path.basename(output),
31 [ '--v8-options' ],
32 { cwd: path.dirname(output),
33 env: { PKG_EXECPATH: 'PKG_INVOKE_NODEJS' } }
34);
35
36assert(left.indexOf('--expose_gc') >= 0 ||
37 left.indexOf('--expose-gc') >= 0);
38assert(right.indexOf('--expose_gc') >= 0 ||
39 right.indexOf('--expose-gc') >= 0);
40utils.vacuum.sync(path.dirname(output));
41

Built with git-ssb-web