aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/test_testbed_api_sd.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-02-14 10:41:47 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-02-14 10:41:47 +0000
commita4d6140c4020e3508ea60c83d04e20208a1c6ba0 (patch)
tree72513de5166a1b67816c631b4072d9238abbda3d /src/testbed/test_testbed_api_sd.c
parentf9ce74c5675bdf100036d2237131ccaf7c69f61f (diff)
downloadgnunet-a4d6140c4020e3508ea60c83d04e20208a1c6ba0.tar.gz
gnunet-a4d6140c4020e3508ea60c83d04e20208a1c6ba0.zip
separate SD calculations
Diffstat (limited to 'src/testbed/test_testbed_api_sd.c')
-rw-r--r--src/testbed/test_testbed_api_sd.c108
1 files changed, 108 insertions, 0 deletions
diff --git a/src/testbed/test_testbed_api_sd.c b/src/testbed/test_testbed_api_sd.c
new file mode 100644
index 000000000..1a870fba8
--- /dev/null
+++ b/src/testbed/test_testbed_api_sd.c
@@ -0,0 +1,108 @@
1/*
2 This file is part of GNUnet
3 (C) 2008--2012 Christian Grothoff (and other contributing authors)
4
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.
9
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.
14
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., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19 */
20
21
22/**
23 * @file testbed/testbed_api_sd.c
24 * @brief test cases for calculating standard deviation
25 * @author Sree Harsha Totakura <sreeharsha@totakura.in>
26 */
27
28#include "platform.h"
29#include "gnunet_common.h"
30#include "gnunet_util_lib.h"
31#include "testbed_api_sd.h"
32
33/**
34 * Global return value
35 */
36static int ret;
37
38/**
39 * Main run function.
40 *
41 * @param cls NULL
42 * @param args arguments passed to GNUNET_PROGRAM_run
43 * @param cfgfile the path to configuration file
44 * @param cfg the configuration file handle
45 */
46static void
47run (void *cls, char *const *args, const char *cfgfile,
48 const struct GNUNET_CONFIGURATION_Handle *config)
49{
50 struct SDHandle *h = GNUNET_TESTBED_SD_init_ (20);
51
52 ret = 0;
53 GNUNET_TESTBED_SD_add_data_ (h, 40);
54 if (GNUNET_SYSERR != GNUNET_TESTBED_SD_deviation_factor_ (h, 10))
55 {
56 GNUNET_break (0);
57 ret = 1;
58 goto err;
59 }
60 GNUNET_TESTBED_SD_add_data_ (h, 30);
61 if (GNUNET_SYSERR == GNUNET_TESTBED_SD_deviation_factor_ (h, 80))
62 {
63 GNUNET_break (0);
64 ret = 1;
65 goto err;
66 }
67 GNUNET_TESTBED_SD_add_data_ (h, 40);
68 if (0 != GNUNET_TESTBED_SD_deviation_factor_ (h, 10))
69 {
70 GNUNET_break (0);
71 ret = 1;
72 goto err;
73 }
74 GNUNET_TESTBED_SD_add_data_ (h, 10);
75 GNUNET_TESTBED_SD_add_data_ (h, 30);
76 if (3 != GNUNET_TESTBED_SD_deviation_factor_ (h, 60))
77 {
78 GNUNET_break (0);
79 ret = 1;
80 goto err;
81 }
82
83 err:
84 GNUNET_TESTBED_SD_destroy_ (h);
85}
86
87
88/**
89 * Main function
90 */
91int
92main (int argc, char **argv)
93{
94 struct GNUNET_GETOPT_CommandLineOption options[] = {
95 GNUNET_GETOPT_OPTION_END
96 };
97 int result;
98
99 result = GNUNET_SYSERR;
100 result =
101 GNUNET_PROGRAM_run (argc, argv,
102 "test_testbed_api_sd", "nohelp", options, &run, NULL);
103 if ((GNUNET_OK != result))
104 return 1;
105 return ret;
106}
107
108/* end of test_testbed_api_sd.c */