Files: 8f4b43a09aab9801bf28987edd59c2e366180327 / test / test-50-fs-runtime-layer / main.js
1016 bytesRaw
1 | |
2 | |
3 | 'use strict'; |
4 | |
5 | const path = require('path'); |
6 | const assert = require('assert'); |
7 | const utils = require('../utils.js'); |
8 | |
9 | assert(!module.parent); |
10 | assert(__dirname === process.cwd()); |
11 | |
12 | const target = process.argv[2] || 'host'; |
13 | const output = './run-time/test-output.exe'; |
14 | |
15 | if (process.arch === 'arm') return; |
16 | |
17 | let left, right; |
18 | utils.mkdirp.sync(path.dirname(output)); |
19 | |
20 | left = utils.spawn.sync( |
21 | 'node', [ 'test-x-index.js' ] |
22 | ); |
23 | |
24 | utils.pkg.sync([ |
25 | '--target', target, |
26 | '--output', output, '.' |
27 | ]); |
28 | |
29 | right = utils.spawn.sync( |
30 | './' + path.basename(output), [], |
31 | { cwd: path.dirname(output) } |
32 | ); |
33 | |
34 | left = left.split('\n'); |
35 | right = right.split('\n'); |
36 | // right may have less lines, premature exit, |
37 | // less trusted, so using left.length here |
38 | for (let i = 0; i < left.length; i += 1) { |
39 | if (left[i] !== right[i]) { |
40 | console.log('line', i); |
41 | console.log('<<left<<\n' + left); |
42 | console.log('>>right>>\n' + right); |
43 | throw new Error('Assertion'); |
44 | } |
45 | } |
46 | |
47 | utils.vacuum.sync(path.dirname(output)); |
48 |
Built with git-ssb-web