Skip to content

Commit b232ca0

Browse files
authored
Fix quick upload for PDF (#4366)
The old job was an ancient build that Jonathan was using. The new one now correctly tracks revisions of chrome builds.
1 parent 9cb7fa5 commit b232ca0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/appengine/private/components/upload-testcase/upload-form-simplified.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,10 +274,11 @@
274274
},
275275
'pdf':
276276
{
277-
'Linux': 'libfuzzer_pdfium_asan',
278-
'Windows': 'libfuzzer_pdfium_asan',
279-
'Mac': 'libfuzzer_pdfium_asan',
280-
'Android': 'libfuzzer_pdfium_asan'
277+
'Linux': 'libfuzzer_chrome_asan',
278+
'Windows': 'windows_libfuzzer_chrome_asan',
279+
'Mac': 'mac_libfuzzer_chrome_asan',
280+
// android doesn't have libfuzzer builds, so we just stick with the linux one.
281+
'Android': 'libfuzzer_chrome_asan'
281282
}
282283
}
283284

@@ -290,7 +291,7 @@
290291
if (jobMapping[fileTypeKey] && jobMapping[fileTypeKey][platform]) {
291292
let newJob = jobMapping[fileTypeKey][platform];
292293
this.set('uploadParams.job', newJob);
293-
if (newJob.includes('pdfium')) {
294+
if (fileTypeKey == 'pdf') {
294295
this.set('uploadParams.target', 'pdfium_xfa_fuzzer')
295296
}
296297
return newJob;

0 commit comments

Comments
 (0)