mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 04:42:04 +00:00
08ab38914d
Resync issues are something the user should take a look at. Her file is damaged, after all. In the GUI purely informational messages can get lost easily, especially when executing multiple jobs. Therefore resyncs warrant a warning. Implements #1842.
13 lines
418 B
Ruby
Executable File
13 lines
418 B
Ruby
Executable File
#!/usr/bin/ruby -w
|
|
|
|
# T_506cisco_talos_can_0037
|
|
describe "mkvmerge, mkvinfo / invalid memory access reported as Cisco TALOS-CAN-0037"
|
|
|
|
exit_codes = {
|
|
"data/segfaults-assertions/cisco-talos-can-0037/id:000409,sig:06,src:001692,op:havoc,rep:32" => :warning,
|
|
}
|
|
|
|
files = Dir.glob("data/segfaults-assertions/cisco-talos-can-0037/*").sort
|
|
|
|
files.each { |file| test_info(file, :exit_code => exit_codes[file] || :success) }
|