summaryrefslogtreecommitdiff
path: root/src/util/test_plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_plugin.c')
-rw-r--r--src/util/test_plugin.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/util/test_plugin.c b/src/util/test_plugin.c
index 98e6173d5..d93af8db1 100644
--- a/src/util/test_plugin.c
+++ b/src/util/test_plugin.c
@@ -26,42 +26,42 @@
26 26
27 27
28static void 28static void
29test_cb(void *cls, const char *libname, void *lib_ret) 29test_cb (void *cls, const char *libname, void *lib_ret)
30{ 30{
31 void *ret; 31 void *ret;
32 32
33 GNUNET_assert(0 == strcmp(cls, "test")); 33 GNUNET_assert (0 == strcmp (cls, "test"));
34 GNUNET_assert(0 == strcmp(lib_ret, "Hello")); 34 GNUNET_assert (0 == strcmp (lib_ret, "Hello"));
35 ret = GNUNET_PLUGIN_unload(libname, "out"); 35 ret = GNUNET_PLUGIN_unload (libname, "out");
36 GNUNET_assert(NULL != ret); 36 GNUNET_assert (NULL != ret);
37 GNUNET_assert(0 == strcmp(ret, "World")); 37 GNUNET_assert (0 == strcmp (ret, "World"));
38 free(ret); 38 free (ret);
39} 39}
40 40
41 41
42int 42int
43main(int argc, char *argv[]) 43main (int argc, char *argv[])
44{ 44{
45 void *ret; 45 void *ret;
46 46
47 GNUNET_log_setup("test-plugin", "WARNING", NULL); 47 GNUNET_log_setup ("test-plugin", "WARNING", NULL);
48 GNUNET_log_skip(1, GNUNET_NO); 48 GNUNET_log_skip (1, GNUNET_NO);
49 ret = GNUNET_PLUGIN_load("libgnunet_plugin_missing", NULL); 49 ret = GNUNET_PLUGIN_load ("libgnunet_plugin_missing", NULL);
50 GNUNET_log_skip(0, GNUNET_NO); 50 GNUNET_log_skip (0, GNUNET_NO);
51 if (ret != NULL) 51 if (ret != NULL)
52 return 1; 52 return 1;
53 ret = GNUNET_PLUGIN_load("libgnunet_plugin_test", "in"); 53 ret = GNUNET_PLUGIN_load ("libgnunet_plugin_test", "in");
54 if (ret == NULL) 54 if (ret == NULL)
55 return 1; 55 return 1;
56 if (0 != strcmp(ret, "Hello")) 56 if (0 != strcmp (ret, "Hello"))
57 return 2; 57 return 2;
58 ret = GNUNET_PLUGIN_unload("libgnunet_plugin_test", "out"); 58 ret = GNUNET_PLUGIN_unload ("libgnunet_plugin_test", "out");
59 if (ret == NULL) 59 if (ret == NULL)
60 return 3; 60 return 3;
61 if (0 != strcmp(ret, "World")) 61 if (0 != strcmp (ret, "World"))
62 return 4; 62 return 4;
63 free(ret); 63 free (ret);
64 GNUNET_PLUGIN_load_all("libgnunet_plugin_tes", "in", &test_cb, "test"); 64 GNUNET_PLUGIN_load_all ("libgnunet_plugin_tes", "in", &test_cb, "test");
65 return 0; 65 return 0;
66} 66}
67 67