brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · fe66823 Raw
24 lines · plain
1// See https://github.com/llvm/llvm-project/issues/97712.2UNSUPPORTED: target={{.*}}3 4RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest5 6// Note: `-detect_leaks=0` is required to prevent flakiness in this test.7// There's some logic in LeakSanitizer and its integration into libFuzzer that8// will disable LSan and re-run the input. This only happens when more malloc()s9// are detected than free()s. Under high system load, this appears to be10// possible as the "more mallocs than frees" is dependent on walltime. In these11// instances, the number of runs ends up being `n + 1`, which is undesirable.12 13RUN: %run %t-SimpleTest -seed=1 -runs=77 -print_final_stats=1 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=FINAL_STATS14FINAL_STATS: stat::number_of_executed_units: 7715FINAL_STATS: stat::average_exec_per_sec:     016FINAL_STATS: stat::new_units_added:17FINAL_STATS: stat::slowest_unit_time_sec:    018FINAL_STATS: stat::peak_rss_mb:19 20RUN: %run %t-SimpleTest %S/dict1.txt -runs=33 -print_final_stats=1 -detect_leaks=0 2>&1 | FileCheck %s --check-prefix=FINAL_STATS121FINAL_STATS1: stat::number_of_executed_units: 3322FINAL_STATS1: stat::peak_rss_mb:23 24