Merge pull request #13996 from Snuffleupagus/downloadutils-link-check
Make `verifyManifestFiles` fail for non-linked test-cases with a `"link": true`-entry
This commit is contained in:
commit
5678c75562
@ -142,6 +142,15 @@ function verifyManifestFiles(manifest, callback) {
|
|||||||
verifyNext();
|
verifyNext();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (item.link && !fs.existsSync(item.file + ".link")) {
|
||||||
|
console.error(
|
||||||
|
`WARNING: Unneeded \`"link": true\`-entry for the "${item.id}" test.`
|
||||||
|
);
|
||||||
|
error = true;
|
||||||
|
i++;
|
||||||
|
verifyNext();
|
||||||
|
return;
|
||||||
|
}
|
||||||
calculateMD5(item.file, function (err, md5) {
|
calculateMD5(item.file, function (err, md5) {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.log('WARNING: Unable to open file for reading "' + err + '".');
|
console.log('WARNING: Unable to open file for reading "' + err + '".');
|
||||||
|
@ -3490,7 +3490,6 @@
|
|||||||
"md5": "8039aba56790d3597d2bc8c794a51301",
|
"md5": "8039aba56790d3597d2bc8c794a51301",
|
||||||
"rounds": 1,
|
"rounds": 1,
|
||||||
"lastPage": 5,
|
"lastPage": 5,
|
||||||
"link": true,
|
|
||||||
"type": "eq"
|
"type": "eq"
|
||||||
},
|
},
|
||||||
{ "id": "text_clip_cff_cid",
|
{ "id": "text_clip_cff_cid",
|
||||||
@ -3564,7 +3563,6 @@
|
|||||||
"file": "pdfs/issue925.pdf",
|
"file": "pdfs/issue925.pdf",
|
||||||
"md5": "f58fe943090aff89dcc8e771bc0db4c2",
|
"md5": "f58fe943090aff89dcc8e771bc0db4c2",
|
||||||
"rounds": 1,
|
"rounds": 1,
|
||||||
"link": true,
|
|
||||||
"type": "eq"
|
"type": "eq"
|
||||||
},
|
},
|
||||||
{ "id": "issue9291",
|
{ "id": "issue9291",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user