2 This file is part of GNUnet.
3 Copyright (C) 2011-2013 GNUnet e.V.
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
21 * @file util/test_speedup.c
22 * @brief testcase for speedup.c
25 #include "gnunet_util_lib.h"
28 * Start time of the testcase
30 static struct GNUNET_TIME_Absolute start;
33 * End-time of the testcase (affected by speed-up)
35 static struct GNUNET_TIME_Absolute end;
38 * Number of cycles we have spent in 'run'.
40 static unsigned int cycles;
44 * Main task that is scheduled with the speed-up.
47 * @param tc scheduler context, unused
53 fprintf (stderr, "..%u", cycles);
56 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
61 end = GNUNET_TIME_absolute_get();
62 fprintf (stderr, "\n");
74 const struct GNUNET_CONFIGURATION_Handle *cfg)
76 fprintf (stderr, "0");
78 GNUNET_SCHEDULER_add_now (&run, NULL);
83 main (int argc, char *argv[])
85 static char *const argvn[] = {
87 "-c", "test_speedup_data.conf",
90 static struct GNUNET_GETOPT_CommandLineOption options[] = {
91 GNUNET_GETOPT_OPTION_END
95 struct GNUNET_TIME_Relative delta;
97 start_real = time (NULL);
98 start = GNUNET_TIME_absolute_get();
99 GNUNET_PROGRAM_run ((sizeof (argvn) / sizeof (char *)) - 1, argvn, "test-speedup",
100 "nohelp", options, &check, NULL);
102 end_real = time (NULL);
103 delta = GNUNET_TIME_absolute_get_difference (start, end);
105 if (delta.rel_value_us > ((end_real - start_real) * 1500LL * 1000LL))
107 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
108 "Execution time in GNUnet time: %s\n",
109 GNUNET_STRINGS_relative_time_to_string (delta, GNUNET_YES));
110 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
111 "Execution time in system time: %llu ms\n",
112 (unsigned long long) ((end_real - start_real) * 1000LL));
115 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
116 "Execution time in GNUnet time: %s\n",
117 GNUNET_STRINGS_relative_time_to_string (delta, GNUNET_YES));
118 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
119 "Execution time in system time: %llu ms\n",
120 (unsigned long long) ((end_real - start_real) * 1000LL));
124 /* end of test_speedup.c */