[report] Avoid big file false positives as /bigobj may be one of the compiler options

This commit is contained in:
Adam Wulkiewicz
2022-08-03 13:12:37 +02:00
parent ec734642c0
commit 6be93885f0

View File

@@ -233,7 +233,7 @@ void process_test_log(test_structure_t::test_log_t& test_log,
test_log.fail_info = test_structure_t::fail_cerr;
} else if ( find_regex(val, "second time limit exceeded") ) {
test_log.fail_info = test_structure_t::fail_time;
} else if ( find_regex(val, "(File too big)|(/bigobj)") ) {
} else if ( find_regex(val, "File too big") ) {
test_log.fail_info = test_structure_t::fail_file;
} else if ( find_regex(val, "virtual memory exhausted") ) {
test_log.fail_info = test_structure_t::fail_other;