Mercurial > hg > CbC > CbC_llvm
annotate compiler-rt/test/fuzzer/fuzzer-finalstats.test @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 RUN: %cpp_compiler %S/SimpleTest.cpp -o %t-SimpleTest |
2 RUN: %run %t-SimpleTest -seed=1 -runs=77 -print_final_stats=1 2>&1 | FileCheck %s --check-prefix=FINAL_STATS | |
3 FINAL_STATS: stat::number_of_executed_units: 77 | |
4 FINAL_STATS: stat::average_exec_per_sec: 0 | |
5 FINAL_STATS: stat::new_units_added: | |
6 FINAL_STATS: stat::slowest_unit_time_sec: 0 | |
7 FINAL_STATS: stat::peak_rss_mb: | |
8 | |
9 RUN: %run %t-SimpleTest %S/dict1.txt -runs=33 -print_final_stats=1 2>&1 | FileCheck %s --check-prefix=FINAL_STATS1 | |
10 FINAL_STATS1: stat::number_of_executed_units: 33 | |
11 FINAL_STATS1: stat::peak_rss_mb: | |
12 |