2 This file is part of GNUnet.
3 Copyright (C) 2001-2013 GNUnet e.V.
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 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 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
21 * @file util/test_scheduler_delay.c
22 * @brief testcase for delay of scheduler, measures how
23 * precise the timers are. Expect values between 0.2 and 2 ms on
27 #include "gnunet_util_lib.h"
29 static struct GNUNET_TIME_Absolute target;
33 static unsigned long long cumDelta;
41 * Signature of the main function of a task.
48 struct GNUNET_TIME_Absolute now;
50 now = GNUNET_TIME_absolute_get ();
51 if (now.abs_value_us > target.abs_value_us)
52 cumDelta += (now.abs_value_us - target.abs_value_us);
54 cumDelta += (target.abs_value_us - now.abs_value_us);
56 GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_multiply
57 (GNUNET_TIME_UNIT_MICROSECONDS, i));
58 FPRINTF (stderr, "%s", ".");
61 FPRINTF (stderr, "%s", "\n");
64 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
65 (GNUNET_TIME_UNIT_MICROSECONDS, i),
73 main (int argc, char *argv[])
75 GNUNET_log_setup ("test-scheduler-delay",
78 target = GNUNET_TIME_absolute_get ();
79 GNUNET_SCHEDULER_run (&test_task, NULL);
81 "Sleep precision: %llu microseconds (average delta). ",
82 cumDelta / (MAXV / INCR));
83 if (cumDelta <= 500 * MAXV / INCR)
84 FPRINTF (stdout, "%s", "Timer precision is excellent.\n");
85 else if (cumDelta <= 5000 * MAXV / INCR) /* 5 ms average deviation */
86 FPRINTF (stdout, "%s", "Timer precision is good.\n");
87 else if (cumDelta > 25000 * MAXV / INCR)
88 FPRINTF (stdout, "%s", "Timer precision is awful.\n");
90 FPRINTF (stdout, "%s", "Timer precision is acceptable.\n");
94 /* end of test_scheduler_delay.c */