]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/performance/27_io/filebuf_sputc.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / performance / 27_io / filebuf_sputc.cc
CommitLineData
aa118a03 1// Copyright (C) 2003-2014 Free Software Foundation, Inc.
ce4f8c6b
BK
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
748086b7 6// Free Software Foundation; either version 3, or (at your option)
ce4f8c6b
BK
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
ce4f8c6b 17
c7c2e831 18#include <unistd.h>
ce4f8c6b
BK
19#include <cstdio>
20#include <fstream>
21#include <testsuite_performance.h>
22
23// libstdc++/9876
24int main()
25{
26 using namespace std;
aecf642c 27 using namespace __gnu_test;
ce4f8c6b
BK
28
29 time_counter time;
30 resource_counter resource;
31 const int iterations = 100000000;
32
33 // C
34 FILE* file = fopen("tmp", "w+");
35 start_counters(time, resource);
36 for (int i = 0; i < iterations; ++i)
37 putc(i % 100, file);
38 stop_counters(time, resource);
39 fclose(file);
40 report_performance(__FILE__, "C", time, resource);
41 clear_counters(time, resource);
42
43 // C unlocked
44 file = fopen("tmp", "w+");
45 start_counters(time, resource);
46 for (int i = 0; i < iterations; ++i)
47 putc_unlocked(i % 100, file);
48 stop_counters(time, resource);
49 fclose(file);
50 report_performance(__FILE__, "C unlocked", time, resource);
51 clear_counters(time, resource);
52
53
54 // C++
55 filebuf buf;
56 buf.open("tmp", ios_base::out | ios_base::in | ios_base::trunc);
57 start_counters(time, resource);
58 for (int i = 0; i < iterations; ++i)
59 buf.sputc(i % 100);
60 stop_counters(time, resource);
61 report_performance(__FILE__, "C++", time, resource);
62
ac3d7b44 63 unlink("tmp");
ce4f8c6b
BK
64 return 0;
65}