We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 698d5b3 commit c4a9cc9Copy full SHA for c4a9cc9
tika-parsers/src/test/java/org/apache/tika/parser/chm/TestChmExtraction.java
@@ -229,7 +229,13 @@ public boolean accept(File pathname) {
229
//this file is a beast, skip it
230
if (pathname.getName().equals("testChm2.chm")) {
231
return false;
232
- } else {
+ //this file throws an exception in the baseline and then
233
+ //isn't included in the actual tests.
234
+ //If we do want to include it we need to change the way
235
+ //MultiThreadedTikaTest handles files that throw exceptions
236
+ } else if (pathname.getName().equals("testChm_oom.chm")) {
237
+ return false;
238
+ } else{
239
return true;
240
}
241
} else {
0 commit comments