annotate compiler-rt/test/fuzzer/fuzzer-finalstats.test @ 266:00f31e85ec16
default tip
Added tag current for changeset 31d058e83c98
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Sat, 14 Oct 2023 10:13:55 +0900 |
parents |
1d019706d866 |
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
|