aboutsummaryrefslogtreecommitdiff
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.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/util/test_plugin.c b/src/util/test_plugin.c
index 04dcdf213..98e6173d5 100644
--- a/src/util/test_plugin.c
+++ b/src/util/test_plugin.c
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 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/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20/** 20/**
21 * @file util/test_plugin.c 21 * @file util/test_plugin.c
22 * @brief testcase for plugin.c 22 * @brief testcase for 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