[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] branch master updated: fix clean up logic in test_
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] branch master updated: fix clean up logic in test_plugin_transport.c |
Date: |
Thu, 10 May 2018 13:43:05 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new 4cb69d0ab fix clean up logic in test_plugin_transport.c
4cb69d0ab is described below
commit 4cb69d0abd7b44e57f3d0718ece5df05c33d4078
Author: Christian Grothoff <address@hidden>
AuthorDate: Thu May 10 13:43:04 2018 +0200
fix clean up logic in test_plugin_transport.c
---
src/transport/test_plugin_transport.c | 48 ++++++++++++++++++++++-------------
1 file changed, 31 insertions(+), 17 deletions(-)
diff --git a/src/transport/test_plugin_transport.c
b/src/transport/test_plugin_transport.c
index d80a13410..2ef3a0ceb 100644
--- a/src/transport/test_plugin_transport.c
+++ b/src/transport/test_plugin_transport.c
@@ -582,19 +582,24 @@ run (void *cls,
&ok);
cfg = c;
/* parse configuration */
- if ((GNUNET_OK
- != GNUNET_CONFIGURATION_get_value_number (c, "TRANSPORT",
- "NEIGHBOUR_LIMIT", &tneigh))
- || (GNUNET_OK
- != GNUNET_CONFIGURATION_get_value_filename (c, "PEER", "PRIVATE_KEY",
- &keyfile)))
+ if ( (GNUNET_OK !=
+ GNUNET_CONFIGURATION_get_value_number (c,
+ "TRANSPORT",
+ "NEIGHBOUR_LIMIT",
+ &tneigh)) ||
+ (GNUNET_OK !=
+ GNUNET_CONFIGURATION_get_value_filename (c,
+ "PEER",
+ "PRIVATE_KEY",
+ &keyfile)))
{
GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
"Transport service is lacking key configuration settings.
Exiting.\n");
return;
}
- if (NULL == (stats = GNUNET_STATISTICS_create ("transport", cfg)))
+ if (NULL == (stats = GNUNET_STATISTICS_create ("transport",
+ cfg)))
{
GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
"Could not create statistics. Exiting.\n");
@@ -739,9 +744,9 @@ run (void *cls,
end_badly_now ();
return;
}
-
}
+
/**
* The main function for the test
*
@@ -750,23 +755,32 @@ run (void *cls,
* @return 0 ok, 1 on error
*/
int
-main (int argc, char * const *argv)
+main (int argc,
+ char * const *argv)
{
static struct GNUNET_GETOPT_CommandLineOption options[] = {
- GNUNET_GETOPT_OPTION_END };
+ GNUNET_GETOPT_OPTION_END
+ };
int ret;
-
- GNUNET_DISK_directory_remove
(GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"));
-
- char * const argv_prog[] = { "test_plugin_transport", "-c",
- "test_plugin_transport_data.conf", NULL };
- GNUNET_log_setup ("test-plugin-transport", "WARNING", NULL );
+ char * const argv_prog[] = {
+ "test_plugin_transport",
+ "-c",
+ "test_plugin_transport_data.conf",
+ NULL
+ };
+
+ GNUNET_log_setup ("test-plugin-transport",
+ "WARNING",
+ NULL);
+ GNUNET_DISK_purge_cfg_dir ("test_plugin_transport_data.conf",
+ "GNUNET_TEST_HOME");
ok = 1; /* set to fail */
ret =
(GNUNET_OK
== GNUNET_PROGRAM_run (3, argv_prog, "test-plugin-transport",
"testcase", options, &run, (void *) argv)) ? ok : 1;
- GNUNET_DISK_directory_remove
(GNUNET_DISK_mktemp("test-gnunetd-plugin-transport"));
+ GNUNET_DISK_purge_cfg_dir ("test_plugin_transport_data.conf",
+ "GNUNET_TEST_HOME");
return ret;
}
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [gnunet] branch master updated: fix clean up logic in test_plugin_transport.c,
gnunet <=