forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvnu-jar.js
More file actions
50 lines (42 loc) · 1.3 KB
/
Copy pathvnu-jar.js
File metadata and controls
50 lines (42 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env node
'use strict';
const { execFile, spawn } = require('child_process');
const vnu = require('vnu-jar');
execFile('java', ['-version'], (error, stdout, stderr) => {
if (error) {
console.error('Skipping vnu-jar test; Java is missing.');
return;
}
const is32bitJava = !/64-Bit/.test(stderr);
// vnu-jar accepts multiple ignores joined with a `|`.
// Also note that the ignores are regular expressions.
const ignores = [
// Low priority warnings
'Section lacks heading.*',
// This seems to happen due to some Unicode characters
'Text run is not in Unicode Normalization Form C.',
// These happen due to the commented out English HTML code some translations have...
// They should be removed at some point
'The document is not mappable to XML 1.0 due to two consecutive hyphens in a comment.'
].join('|');
const args = [
'-jar',
`"${vnu}"`,
'--asciiquotes',
'--skip-non-html',
// Ignore the language code warnings
'--no-langdetect',
'--Werror',
'--errors-only',
`--filterpattern "${ignores}"`,
'build/'
];
// For the 32-bit Java we need to pass `-Xss512k`
if (is32bitJava) {
args.splice(0, 0, '-Xss512k');
}
return spawn('java', args, {
shell: true,
stdio: 'inherit'
}).on('exit', process.exit);
});