mirror of
https://github.com/boostorg/regression.git
synced 2026-01-19 04:42:10 +00:00
[report] Avoid big file false positives as /bigobj may be one of the compiler options
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user