aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/datacache/Makefile.am30
-rw-r--r--src/datacache/datacache.c (renamed from src/datacache/datacache_api.c)0
-rw-r--r--src/datacache/perf_datacache.c (renamed from src/datacache/perf_datacache_api.c)6
-rw-r--r--src/datacache/perf_datacache_data.conf (renamed from src/datacache/perf_datacache_api_data.conf)0
-rw-r--r--src/datacache/test_datacache.c (renamed from src/datacache/test_datacache_api.c)6
-rw-r--r--src/datacache/test_datacache_data.conf (renamed from src/datacache/test_datacache_api_data.conf)0
-rw-r--r--src/datacache/test_datacache_quota.c (renamed from src/datacache/test_datacache_api_quota.c)6
7 files changed, 24 insertions, 24 deletions
diff --git a/src/datacache/Makefile.am b/src/datacache/Makefile.am
index c650521d6..5e01fe03e 100644
--- a/src/datacache/Makefile.am
+++ b/src/datacache/Makefile.am
@@ -16,7 +16,7 @@ lib_LTLIBRARIES = \
16 libgnunetdatacache.la 16 libgnunetdatacache.la
17 17
18libgnunetdatacache_la_SOURCES = \ 18libgnunetdatacache_la_SOURCES = \
19 datacache_api.c plugin_datacache.h 19 datacache.c plugin_datacache.h
20libgnunetdatacache_la_LIBADD = \ 20libgnunetdatacache_la_LIBADD = \
21 $(top_builddir)/src/util/libgnunetutil.la \ 21 $(top_builddir)/src/util/libgnunetutil.la \
22 $(GN_LIBINTL) 22 $(GN_LIBINTL)
@@ -47,30 +47,30 @@ libgnunet_plugin_datacache_template_la_LDFLAGS = \
47 47
48 48
49check_PROGRAMS = \ 49check_PROGRAMS = \
50 test_datacache_api \ 50 test_datacache \
51 test_datacache_api_quota \ 51 test_datacache_quota \
52 perf_datacache_api 52 perf_datacache
53 53
54TESTS = $(check_PROGRAMS) 54TESTS = $(check_PROGRAMS)
55 55
56test_datacache_api_SOURCES = \ 56test_datacache_SOURCES = \
57 test_datacache_api.c 57 test_datacache.c
58test_datacache_api_LDADD = \ 58test_datacache_LDADD = \
59 $(top_builddir)/src/datacache/libgnunetdatacache.la \ 59 $(top_builddir)/src/datacache/libgnunetdatacache.la \
60 $(top_builddir)/src/util/libgnunetutil.la 60 $(top_builddir)/src/util/libgnunetutil.la
61 61
62test_datacache_api_quota_SOURCES = \ 62test_datacache_quota_SOURCES = \
63 test_datacache_api_quota.c 63 test_datacache_quota.c
64test_datacache_api_quota_LDADD = \ 64test_datacache_quota_LDADD = \
65 $(top_builddir)/src/datacache/libgnunetdatacache.la \ 65 $(top_builddir)/src/datacache/libgnunetdatacache.la \
66 $(top_builddir)/src/util/libgnunetutil.la 66 $(top_builddir)/src/util/libgnunetutil.la
67 67
68perf_datacache_api_SOURCES = \ 68perf_datacache_SOURCES = \
69 perf_datacache_api.c 69 perf_datacache.c
70perf_datacache_api_LDADD = \ 70perf_datacache_LDADD = \
71 $(top_builddir)/src/datacache/libgnunetdatacache.la \ 71 $(top_builddir)/src/datacache/libgnunetdatacache.la \
72 $(top_builddir)/src/util/libgnunetutil.la 72 $(top_builddir)/src/util/libgnunetutil.la
73 73
74EXTRA_DIST = \ 74EXTRA_DIST = \
75 test_datacache_api_data.conf \ 75 test_datacache_data.conf \
76 perf_datacache_api_data.conf 76 perf_datacache_data.conf
diff --git a/src/datacache/datacache_api.c b/src/datacache/datacache.c
index 421acac0f..421acac0f 100644
--- a/src/datacache/datacache_api.c
+++ b/src/datacache/datacache.c
diff --git a/src/datacache/perf_datacache_api.c b/src/datacache/perf_datacache.c
index aa11fe122..818b6f816 100644
--- a/src/datacache/perf_datacache_api.c
+++ b/src/datacache/perf_datacache.c
@@ -18,7 +18,7 @@
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20/* 20/*
21 * @file datacache/perf_datacache_api.c 21 * @file datacache/perf_datacache.c
22 * @brief Performance evaluation for the datacache implementations. 22 * @brief Performance evaluation for the datacache implementations.
23 * @author Nils Durner 23 * @author Nils Durner
24 */ 24 */
@@ -124,7 +124,7 @@ check ()
124{ 124{
125 char *const argv[] = { "perf-datacache-api", 125 char *const argv[] = { "perf-datacache-api",
126 "-c", 126 "-c",
127 "perf_datacache_api_data.conf", 127 "perf_datacache_data.conf",
128#if VERBOSE 128#if VERBOSE
129 "-L", "DEBUG", 129 "-L", "DEBUG",
130#endif 130#endif
@@ -160,4 +160,4 @@ main (int argc, char *argv[])
160 return ret; 160 return ret;
161} 161}
162 162
163/* end of perf_datacache_api.c */ 163/* end of perf_datacache.c */
diff --git a/src/datacache/perf_datacache_api_data.conf b/src/datacache/perf_datacache_data.conf
index 55e178d99..55e178d99 100644
--- a/src/datacache/perf_datacache_api_data.conf
+++ b/src/datacache/perf_datacache_data.conf
diff --git a/src/datacache/test_datacache_api.c b/src/datacache/test_datacache.c
index 8a5a356d2..c896b667b 100644
--- a/src/datacache/test_datacache_api.c
+++ b/src/datacache/test_datacache.c
@@ -18,7 +18,7 @@
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20/* 20/*
21 * @file datacache/test_datacache_api.c 21 * @file datacache/test_datacache.c
22 * @brief Test for the datacache implementations. 22 * @brief Test for the datacache implementations.
23 * @author Nils Durner 23 * @author Nils Durner
24 */ 24 */
@@ -112,7 +112,7 @@ check ()
112{ 112{
113 char *const argv[] = { "test-datacache-api", 113 char *const argv[] = { "test-datacache-api",
114 "-c", 114 "-c",
115 "test_datacache_api_data.conf", 115 "test_datacache_data.conf",
116#if VERBOSE 116#if VERBOSE
117 "-L", "DEBUG", 117 "-L", "DEBUG",
118#endif 118#endif
@@ -147,4 +147,4 @@ main (int argc, char *argv[])
147 return ret; 147 return ret;
148} 148}
149 149
150/* end of test_datacache_api.c */ 150/* end of test_datacache.c */
diff --git a/src/datacache/test_datacache_api_data.conf b/src/datacache/test_datacache_data.conf
index 2e8606682..2e8606682 100644
--- a/src/datacache/test_datacache_api_data.conf
+++ b/src/datacache/test_datacache_data.conf
diff --git a/src/datacache/test_datacache_api_quota.c b/src/datacache/test_datacache_quota.c
index c912c4927..1cad2a907 100644
--- a/src/datacache/test_datacache_api_quota.c
+++ b/src/datacache/test_datacache_quota.c
@@ -18,7 +18,7 @@
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20/* 20/*
21 * @file datacache/test_datacache_api_quota.c 21 * @file datacache/test_datacache_quota.c
22 * @brief Test for the quota code of the datacache implementations. 22 * @brief Test for the quota code of the datacache implementations.
23 * @author Nils Durner 23 * @author Nils Durner
24 */ 24 */
@@ -114,7 +114,7 @@ check ()
114{ 114{
115 char *const argv[] = { "test-datacache-api-quota", 115 char *const argv[] = { "test-datacache-api-quota",
116 "-c", 116 "-c",
117 "test_datacache_api_data.conf", 117 "test_datacache_data.conf",
118#if VERBOSE 118#if VERBOSE
119 "-L", "DEBUG", 119 "-L", "DEBUG",
120#endif 120#endif
@@ -149,4 +149,4 @@ main (int argc, char *argv[])
149 return ret; 149 return ret;
150} 150}
151 151
152/* end of test_datacache_api_quota.c */ 152/* end of test_datacache_quota.c */