#include <ctime>
#include <iostream>
#include <string>
#include <testsuite_performance.h>
using namespace std;
void
test_append_char(int how_much)
{
string buf;
for (int i = 0; i < how_much; ++i)
buf.append(static_cast<string::size_type>(1) , 'x');
}
void
test_append_string(int how_much)
{
string s(static_cast<string::size_type>(1) , 'x');
string buf;
for (int i = 0; i < how_much; ++i)
buf.append(s);
}
void
run_benchmark1(int how_much)
{
using namespace __gnu_test;
time_counter time;
resource_counter resource;
start_counters(time, resource);
test_append_char(how_much);
stop_counters(time, resource);
report_performance(__FILE__, "char", time, resource);
}
void
run_benchmark2(int how_much)
{
using namespace __gnu_test;
time_counter time;
resource_counter resource;
start_counters(time, resource);
test_append_string(how_much);
stop_counters(time, resource);
report_performance(__FILE__, "string", time, resource);
}
int main()
{
run_benchmark1(100000);
run_benchmark2(100000);
run_benchmark1(1000000);
run_benchmark2(1000000);
run_benchmark1(10000000);
run_benchmark2(10000000);
}