File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 98
98
required : [
99
99
/Successfully queried/
100
100
]
101
+ } ,
102
+ linux : {
103
+ known_failures : [
104
+ /Auxiliary aborted due to failure: not-found/
105
+ ]
101
106
}
102
107
}
103
108
} ,
@@ -187,7 +192,7 @@ def with_test_harness(module_test)
187
192
# Skip any ignored lines from the validation input
188
193
validated_lines = test_result . lines . reject do |line |
189
194
is_acceptable = known_failures . any? do |acceptable_failure |
190
- is_matching_line = is_matching_line . value . is_a? ( Regexp ) ? line . match? ( acceptable_failure . value ) : line . include? ( acceptable_failure . value )
195
+ is_matching_line = acceptable_failure . value . is_a? ( Regexp ) ? line . match? ( acceptable_failure . value ) : line . include? ( acceptable_failure . value )
191
196
is_matching_line &&
192
197
acceptable_failure . if? ( test_environment )
193
198
end || line . match? ( /Passed: \d +; Failed: \d +/ )
You can’t perform that action at this time.
0 commit comments