Regression test for closing a stream, slowly, while a message is queued
[platform/upstream/glib.git] / gio / tests / Makefile.am
1
2 NULL =
3 BUILT_SOURCES =
4
5 include $(top_srcdir)/Makefile.decl
6
7 SUBDIRS = gdbus-object-manager-example
8
9 INCLUDES =                      \
10         -g                      \
11         $(gio_INCLUDES)         \
12         $(GLIB_DEBUG_FLAGS)     \
13         -I$(top_builddir)/gio   \
14         -I$(top_srcdir)/gio     \
15         $(DBUS1_CFLAGS)         \
16         -DSRCDIR=\""$(srcdir)"\"
17
18 noinst_PROGRAMS = $(TEST_PROGS) $(SAMPLE_PROGS)
19 noinst_DATA = $(MISC_STUFF)
20
21 progs_ldadd     =                                       \
22         $(top_builddir)/glib/libglib-2.0.la             \
23         $(top_builddir)/gthread/libgthread-2.0.la       \
24         $(top_builddir)/gobject/libgobject-2.0.la       \
25         $(top_builddir)/gio/libgio-2.0.la
26
27 TEST_PROGS +=                   \
28         io-stream               \
29         actions                 \
30         memory-input-stream     \
31         memory-output-stream    \
32         readwrite               \
33         g-file                  \
34         g-file-info             \
35         converter-stream        \
36         data-input-stream       \
37         data-output-stream      \
38         g-icon                  \
39         buffered-input-stream   \
40         buffered-output-stream  \
41         sleepy-stream           \
42         filter-streams          \
43         volumemonitor           \
44         simple-async-result     \
45         srvtarget               \
46         contexts                \
47         gsettings               \
48         gschema-compile         \
49         async-close-output-stream \
50         gdbus-addresses         \
51         network-address         \
52         gdbus-message           \
53         socket                  \
54         pollable                \
55         tls-certificate         \
56         tls-interaction         \
57         cancellable             \
58         $(NULL)
59
60 if OS_UNIX
61 TEST_PROGS +=                   \
62         gdbus-close-pending     \
63         gdbus-connection        \
64         gdbus-connection-slow   \
65         gdbus-names             \
66         gdbus-proxy             \
67         gdbus-proxy-threads     \
68         gdbus-proxy-well-known-name \
69         gdbus-introspection     \
70         gdbus-threading         \
71         gdbus-export            \
72         gdbus-error             \
73         gdbus-peer              \
74         gdbus-exit-on-close     \
75         gdbus-non-socket        \
76         gdbus-bz627724          \
77         appinfo                 \
78         contenttype             \
79         mimeapps                \
80         file                    \
81         $(NULL)
82 endif
83
84 SAMPLE_PROGS =                          \
85         resolver                        \
86         socket-server                   \
87         socket-client                   \
88         echo-server                     \
89         httpd                           \
90         send-data                       \
91         filter-cat                      \
92         gdbus-example-export            \
93         gdbus-example-own-name          \
94         gdbus-example-watch-name        \
95         gdbus-example-watch-proxy       \
96         gdbus-example-server            \
97         gdbus-example-subtree           \
98         gdbus-example-peer              \
99         gdbus-example-proxy-subclass    \
100         gdbus-connection-flush-helper   \
101         appinfo-test                    \
102         proxy                           \
103         gapplication-example-open       \
104         gapplication-example-cmdline    \
105         gapplication-example-cmdline2   \
106         gapplication-example-cmdline3   \
107         gapplication-example-actions    \
108         $(NULL)
109
110
111 if OS_UNIX
112 TEST_PROGS +=                   \
113         live-g-file             \
114         desktop-app-info        \
115         unix-fd                 \
116         unix-streams            \
117         gapplication            \
118         basic-application       \
119         gdbus-test-codegen      \
120         $(NULL)
121 SAMPLE_PROGS +=                                 \
122         gdbus-example-unix-fd-client            \
123         gdbus-example-objectmanager-server      \
124         gdbus-example-objectmanager-client      \
125         $(NULL)
126 endif
127
128 if OS_WIN32
129 TEST_PROGS += win32-streams
130 endif
131
132 io_stream_SOURCES = io-stream.c
133 io_stream_LDADD   = $(progs_ldadd)
134
135 actions_LDADD     = $(progs_ldadd)
136
137 memory_input_stream_SOURCES       = memory-input-stream.c
138 memory_input_stream_LDADD         = $(progs_ldadd)
139
140 memory_output_stream_SOURCES      = memory-output-stream.c
141 memory_output_stream_LDADD        = $(progs_ldadd)
142
143 g_file_SOURCES    = g-file.c
144 g_file_LDADD      = $(progs_ldadd)
145
146 readwrite_SOURCES         = readwrite.c
147 readwrite_LDADD   = $(progs_ldadd)
148
149 g_file_info_SOURCES     = g-file-info.c
150 g_file_info_LDADD       = $(progs_ldadd)
151
152 converter_stream_SOURCES        = converter-stream.c
153 converter_stream_LDADD          = $(progs_ldadd)
154
155 data_input_stream_SOURCES       = data-input-stream.c
156 data_input_stream_LDADD         = $(progs_ldadd)
157
158 data_output_stream_SOURCES      = data-output-stream.c
159 data_output_stream_LDADD        = $(progs_ldadd)
160
161 async_close_output_stream_SOURCES       = async-close-output-stream.c
162 async_close_output_stream_LDADD         = $(progs_ldadd)
163
164 filter_cat_SOURCES      = filter-cat.c
165 filter_cat_LDADD        = $(progs_ldadd)
166
167 g_icon_SOURCES  = g-icon.c
168 g_icon_LDADD    = $(progs_ldadd)
169
170 buffered_input_stream_SOURCES   = buffered-input-stream.c
171 buffered_input_stream_LDADD     = $(progs_ldadd)
172
173 buffered_output_stream_SOURCES  = buffered-output-stream.c
174 buffered_output_stream_LDADD    = $(progs_ldadd)
175
176 live_g_file_SOURCES       = live-g-file.c
177 live_g_file_LDADD         = $(progs_ldadd)
178
179 desktop_app_info_SOURCES  = desktop-app-info.c
180 desktop_app_info_LDADD    = $(progs_ldadd)
181
182 unix_streams_SOURCES      = unix-streams.c
183 unix_streams_LDADD        = $(progs_ldadd) \
184         $(top_builddir)/gthread/libgthread-2.0.la
185
186 win32_streams_SOURCES     = win32-streams.c
187 win32_streams_LDADD       = $(progs_ldadd) \
188         $(top_builddir)/gthread/libgthread-2.0.la
189
190 unix_fd_SOURCES   = unix-fd.c
191 unix_fd_LDADD     = $(progs_ldadd)
192
193 simple_async_result_SOURCES     = simple-async-result.c
194 simple_async_result_LDADD       = $(progs_ldadd)
195
196 sleepy_stream_SOURCES           = sleepy-stream.c
197 sleepy_stream_LDADD             = $(progs_ldadd)
198
199 filter_streams_SOURCES          = filter-streams.c
200 filter_streams_LDADD            = $(progs_ldadd)
201
202 volumemonitor_SOURCES           = volumemonitor.c
203 volumemonitor_LDADD             = $(progs_ldadd)
204
205 resolver_SOURCES          = resolver.c
206 resolver_LDADD            = $(progs_ldadd) \
207         $(top_builddir)/gthread/libgthread-2.0.la
208
209 socket_server_SOURCES     = socket-server.c
210 socket_server_LDADD       = $(progs_ldadd) \
211         $(top_builddir)/gthread/libgthread-2.0.la
212
213 socket_client_SOURCES     = socket-client.c \
214                             gtlsconsoleinteraction.c \
215                             gtlsconsoleinteraction.h
216 socket_client_LDADD       = $(progs_ldadd) \
217         $(top_builddir)/gthread/libgthread-2.0.la
218
219 echo_server_SOURCES       = echo-server.c
220 echo_server_LDADD         = $(progs_ldadd) \
221         $(top_builddir)/gthread/libgthread-2.0.la
222
223 httpd_SOURCES             = httpd.c
224 httpd_LDADD               = $(progs_ldadd) \
225         $(top_builddir)/gthread/libgthread-2.0.la
226
227 send_data_SOURCES         = send-data.c
228 send_data_LDADD           = $(progs_ldadd) \
229         $(top_builddir)/gthread/libgthread-2.0.la
230
231 srvtarget_SOURCES         = srvtarget.c
232 srvtarget_LDADD           = $(progs_ldadd)
233
234 network_address_SOURCE    = network-address.c
235 network_address_LDADD     = $(progs_ldadd)
236
237 socket_SOURCE             = socket.c
238 socket_LDADD              = $(progs_ldadd)
239
240 pollable_SOURCE           = pollable.c
241 pollable_LDADD            = $(progs_ldadd)
242
243 contexts_SOURCES          = contexts.c
244 contexts_LDADD            = $(progs_ldadd) \
245         $(top_builddir)/gthread/libgthread-2.0.la
246
247 gsettings_SOURCES         = gsettings.c
248 gsettings_LDADD           = $(progs_ldadd)
249
250 gschema_compile_SOURCES   = gschema-compile.c
251 gschema_compile_LDADD     = $(progs_ldadd)
252
253 if HAVE_DBUS1
254 TEST_PROGS += gdbus-serialization
255 gdbus_serialization_SOURCES = gdbus-serialization.c gdbus-tests.h gdbus-tests.c
256 gdbus_serialization_CFLAGS = $(DBUS1_CFLAGS)
257 gdbus_serialization_LDADD = $(progs_ldadd) $(DBUS1_LIBS)
258 endif
259
260 gdbus_addresses_SOURCES = gdbus-addresses.c
261 gdbus_addresses_LDADD = $(progs_ldadd)
262
263 gdbus_bz627724_SOURCES = gdbus-bz627724.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
264 gdbus_bz627724_LDADD = $(progs_ldadd)
265
266 gdbus_close_pending_SOURCES = gdbus-close-pending.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
267 gdbus_close_pending_LDADD = $(progs_ldadd)
268
269 if OS_UNIX
270 gdbus-test-codegen-generated.h gdbus-test-codegen-generated.c : test-codegen.xml
271         $(AM_V_GEN) UNINSTALLED_GLIB_SRCDIR=$(top_srcdir) \
272                 UNINSTALLED_GLIB_BUILDDIR=$(top_builddir) \
273                 $(PYTHON) $(top_builddir)/gio/gdbus-2.0/codegen/gdbus-codegen \
274                 --interface-prefix org.project. \
275                 --generate-c-code gdbus-test-codegen-generated \
276                 --c-generate-object-manager \
277                 --c-namespace Foo \
278                 --generate-docbook gdbus-test-codegen-generated-doc \
279                 --annotate "org.project.Bar" Key1 Value1 \
280                 --annotate "org.project.Bar" org.gtk.GDBus.Internal Value2 \
281                 --annotate "org.project.Bar.HelloWorld()" Key3 Value3 \
282                 --annotate "org.project.Bar::TestSignal" Key4 Value4 \
283                 --annotate "org.project.Bar:ay" Key5 Value5 \
284                 --annotate "org.project.Bar.TestPrimitiveTypes()[val_int32]" Key6 Value6 \
285                 --annotate "org.project.Bar.TestPrimitiveTypes()[ret_uint32]" Key7 Value7 \
286                 --annotate "org.project.Bar::TestSignal[array_of_strings]" Key8 Value8 \
287                 $(srcdir)/test-codegen.xml \
288                 $(NULL)
289
290 BUILT_SOURCES += gdbus-test-codegen-generated.c gdbus-test-codegen-generated.h
291
292 gdbus_test_codegen_SOURCES  = gdbus-test-codegen.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
293 gdbus_test_codegen_SOURCES += gdbus-test-codegen-generated.c gdbus-test-codegen-generated.h
294 gdbus_test_codegen_LDADD = $(progs_ldadd)
295 endif # OS_UNIX
296
297 gdbus_connection_SOURCES = gdbus-connection.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
298 gdbus_connection_LDADD = $(progs_ldadd)
299
300 gdbus_connection_slow_SOURCES = gdbus-connection-slow.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
301 gdbus_connection_slow_LDADD = $(progs_ldadd)
302
303 gdbus_message_SOURCES = gdbus-message.c
304 gdbus_message_LDADD = $(progs_ldadd)
305
306 gdbus_names_SOURCES = gdbus-names.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
307 gdbus_names_LDADD = $(progs_ldadd)
308
309 gdbus_proxy_SOURCES = gdbus-proxy.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
310 gdbus_proxy_LDADD = $(progs_ldadd)
311
312 gdbus_proxy_threads_SOURCES = gdbus-proxy-threads.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
313 gdbus_proxy_threads_LDADD = $(progs_ldadd)
314
315 gdbus_proxy_well_known_name_SOURCES = gdbus-proxy-well-known-name.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
316 gdbus_proxy_well_known_name_LDADD = $(progs_ldadd)
317
318 gdbus_introspection_SOURCES = gdbus-introspection.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
319 gdbus_introspection_LDADD = $(progs_ldadd)
320
321 gdbus_threading_SOURCES = gdbus-threading.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
322 gdbus_threading_LDADD = $(progs_ldadd)
323
324 gdbus_export_SOURCES = gdbus-export.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
325 gdbus_export_LDADD = $(progs_ldadd)
326
327 gdbus_error_SOURCES = gdbus-error.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
328 gdbus_error_LDADD = $(progs_ldadd)
329
330 gdbus_peer_SOURCES = gdbus-peer.c gdbus-tests.h gdbus-tests.c
331 gdbus_peer_LDADD = $(progs_ldadd)
332
333 gdbus_non_socket_SOURCES = gdbus-non-socket.c gdbus-tests.h gdbus-tests.c
334 gdbus_non_socket_LDADD = $(progs_ldadd)
335
336 gdbus_exit_on_close_SOURCES = gdbus-exit-on-close.c gdbus-sessionbus.c gdbus-sessionbus.h gdbus-tests.h gdbus-tests.c
337 gdbus_exit_on_close_LDADD = $(progs_ldadd)
338
339 gdbus_example_watch_name_SOURCES = gdbus-example-watch-name.c
340 gdbus_example_watch_name_LDADD   = $(progs_ldadd)
341
342 gdbus_example_watch_proxy_SOURCES = gdbus-example-watch-proxy.c
343 gdbus_example_watch_proxy_LDADD   = $(progs_ldadd)
344
345 gdbus_example_own_name_SOURCES = gdbus-example-own-name.c
346 gdbus_example_own_name_LDADD   = $(progs_ldadd)
347
348 gdbus_example_server_SOURCES = gdbus-example-server.c
349 gdbus_example_server_LDADD   = $(progs_ldadd)
350
351 gdbus_example_unix_fd_client_SOURCES = gdbus-example-unix-fd-client.c
352 gdbus_example_unix_fd_client_LDADD   = $(progs_ldadd)
353
354 gdbus_example_subtree_SOURCES = gdbus-example-subtree.c
355 gdbus_example_subtree_LDADD   = $(progs_ldadd)
356
357 gdbus_example_peer_SOURCES = gdbus-example-peer.c
358 gdbus_example_peer_LDADD   = $(progs_ldadd)
359
360 gdbus_example_proxy_subclass_SOURCES = gdbus-example-proxy-subclass.c
361 gdbus_example_proxy_subclass_LDADD   = $(progs_ldadd)
362
363 gdbus_example_export_SOURCES = gdbus-example-export.c
364 gdbus_example_export_LDADD   = $(progs_ldadd)
365
366 gdbus_connection_flush_helper_SOURCES = gdbus-connection-flush-helper.c
367 gdbus_connection_flush_helper_LDADD = $(progs_ldadd)
368
369 appinfo_SOURCES = appinfo.c
370 appinfo_LDADD   = $(progs_ldadd)
371
372 appinfo_test_SOURCES = appinfo-test.c
373 appinfo_test_LDADD   = $(progs_ldadd)
374
375 contenttype_SOURCES = contenttype.c
376 contenttype_LDADD   = $(progs_ldadd)
377
378 mimeapps_SOURCES = mimeapps.c
379 mimeapps_LDADD   = $(progs_ldadd)
380
381 file_SOURCES = file.c
382 file_LDADD   = $(progs_ldadd)
383
384 gapplication_SOURCES = gapplication.c gdbus-sessionbus.c
385 gapplication_LDADD = $(progs_ldadd)
386
387 basic_application_LDADD = $(progs_ldadd)
388
389 gapplication_example_open_SOURCES = gapplication-example-open.c
390 gapplication_example_open_LDADD   = $(progs_ldadd)
391
392 gapplication_example_cmdline_SOURCES = gapplication-example-cmdline.c
393 gapplication_example_cmdline_LDADD   = $(progs_ldadd)
394
395 gapplication_example_cmdline2_SOURCES = gapplication-example-cmdline2.c
396 gapplication_example_cmdline2_LDADD   = $(progs_ldadd)
397
398 gapplication_example_cmdline3_SOURCES = gapplication-example-cmdline3.c
399 gapplication_example_cmdline3_LDADD   = $(progs_ldadd)
400
401 gapplication_example_actions_SOURCES = gapplication-example-actions.c
402 gapplication_example_actions_LDADD   = $(progs_ldadd)
403
404 schema_tests = \
405         schema-tests/array-default-not-in-choices.gschema.xml           \
406         schema-tests/bad-choice.gschema.xml                             \
407         schema-tests/bad-key.gschema.xml                                \
408         schema-tests/bad-key2.gschema.xml                               \
409         schema-tests/bad-key3.gschema.xml                               \
410         schema-tests/bad-key4.gschema.xml                               \
411         schema-tests/bad-type.gschema.xml                               \
412         schema-tests/bare-alias.gschema.xml                             \
413         schema-tests/choice-alias.gschema.xml                           \
414         schema-tests/choice-bad.gschema.xml                             \
415         schema-tests/choice-badtype.gschema.xml                         \
416         schema-tests/choice-invalid-alias.gschema.xml                   \
417         schema-tests/choice-missing-value.gschema.xml                   \
418         schema-tests/choice-shadowed-alias.gschema.xml                  \
419         schema-tests/choice-upside-down.gschema.xml                     \
420         schema-tests/choice.gschema.xml                                 \
421         schema-tests/choices-wrong-type.gschema.xml                     \
422         schema-tests/default-in-aliases.gschema.xml                     \
423         schema-tests/default-not-in-choices.gschema.xml                 \
424         schema-tests/default-out-of-range.gschema.xml                   \
425         schema-tests/empty-key.gschema.xml                              \
426         schema-tests/enum-with-aliases.gschema.xml                      \
427         schema-tests/enum-with-bad-default.gschema.xml                  \
428         schema-tests/enum-with-chained-alias.gschema.xml                \
429         schema-tests/enum-with-choice.gschema.xml                       \
430         schema-tests/enum-with-invalid-alias.gschema.xml                \
431         schema-tests/enum-with-repeated-alias.gschema.xml               \
432         schema-tests/enum-with-repeated-nick.gschema.xml                \
433         schema-tests/enum-with-repeated-value.gschema.xml               \
434         schema-tests/enum-with-shadow-alias.gschema.xml                 \
435         schema-tests/enum.gschema.xml                                   \
436         schema-tests/flags-aliased-default.gschema.xml                  \
437         schema-tests/flags-bad-default.gschema.xml                      \
438         schema-tests/flags-more-than-one-bit.gschema.xml                \
439         schema-tests/flags-with-enum-attr.gschema.xml                   \
440         schema-tests/flags-with-enum-tag.gschema.xml                    \
441         schema-tests/extend-and-shadow-indirect.gschema.xml             \
442         schema-tests/extend-and-shadow.gschema.xml                      \
443         schema-tests/extend-missing.gschema.xml                         \
444         schema-tests/extend-nonlist.gschema.xml                         \
445         schema-tests/extend-self.gschema.xml                            \
446         schema-tests/extend-wrong-list-indirect.gschema.xml             \
447         schema-tests/extend-wrong-list.gschema.xml                      \
448         schema-tests/extending.gschema.xml                              \
449         schema-tests/from-docs.gschema.xml                              \
450         schema-tests/incomplete-list.gschema.xml                        \
451         schema-tests/inherit-gettext-domain.gschema.xml                 \
452         schema-tests/invalid-path.gschema.xml                           \
453         schema-tests/key-in-list-indirect.gschema.xml                   \
454         schema-tests/key-in-list.gschema.xml                            \
455         schema-tests/list-of-missing.gschema.xml                        \
456         schema-tests/missing-quotes.gschema.xml                         \
457         schema-tests/no-default.gschema.xml                             \
458         schema-tests/overflow.gschema.xml                               \
459         schema-tests/override-missing.gschema.xml                       \
460         schema-tests/override-range-error.gschema.xml                   \
461         schema-tests/override-then-key.gschema.xml                      \
462         schema-tests/override-twice.gschema.xml                         \
463         schema-tests/override-type-error.gschema.xml                    \
464         schema-tests/override.gschema.xml                               \
465         schema-tests/range-badtype.gschema.xml                          \
466         schema-tests/range-default-high.gschema.xml                     \
467         schema-tests/range-default-low.gschema.xml                      \
468         schema-tests/range-high-default.gschema.xml                     \
469         schema-tests/range-low-default.gschema.xml                      \
470         schema-tests/range-missing-max.gschema.xml                      \
471         schema-tests/range-missing-min.gschema.xml                      \
472         schema-tests/range-parse-error.gschema.xml                      \
473         schema-tests/range-wrong-type.gschema.xml                       \
474         schema-tests/range.gschema.xml                                  \
475         schema-tests/wrong-category.gschema.xml
476
477 proxy_SOURCES = proxy.c
478 proxy_LDADD   = $(progs_ldadd) \
479         $(top_builddir)/gthread/libgthread-2.0.la
480
481 tls_certificate_SOURCES = tls-certificate.c gtesttlsbackend.c gtesttlsbackend.h
482 tls_certificate_LDADD   = $(progs_ldadd)
483
484 tls_interaction_LDADD = $(progs_ldadd)
485
486 cancellable_LDADD = $(progs_ldadd)
487
488 # -----------------------------------------------------------------------------
489
490 if OS_UNIX
491 gdbus_example_objectmanager_server_SOURCES  = gdbus-example-objectmanager-server.c
492 gdbus_example_objectmanager_server_CFLAGS   = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
493 gdbus_example_objectmanager_server_LDADD    = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
494
495 gdbus_example_objectmanager_client_SOURCES  = gdbus-example-objectmanager-client.c
496 gdbus_example_objectmanager_client_CFLAGS   = -I$(top_builddir)/gio/tests/gdbus-object-manager-example
497 gdbus_example_objectmanager_client_LDADD    = $(top_builddir)/gio/tests/gdbus-object-manager-example/libgdbus-example-objectmanager.la $(progs_ldadd)
498 endif OS_UNIX
499
500 # -----------------------------------------------------------------------------
501
502 EXTRA_DIST += \
503         socket-common.c                 \
504         org.gtk.test.gschema            \
505         org.gtk.test.gschema.xml        \
506         testenum.h                      \
507         enums.xml.template              \
508         de.po                           \
509         $(schema_tests)                 \
510         appinfo-test.desktop            \
511         appinfo-test2.desktop           \
512         appinfo-test-gnome.desktop      \
513         appinfo-test-notgnome.desktop   \
514         gdbus-testserver.py             \
515         test-codegen.xml                \
516         cert1.pem                       \
517         cert2.pem                       \
518         cert3.pem                       \
519         key.pem                         \
520         key-cert.pem                    \
521         cert-key.pem                    \
522         cert-list.pem                   \
523         nothing.pem                     \
524         $(NULL)
525
526 MISC_STUFF = test.mo
527
528 test.mo: de.po
529         $(MSGFMT) -o test.mo $(srcdir)/de.po; \
530         $(MKDIR_P) de/LC_MESSAGES; \
531         cp -f test.mo de/LC_MESSAGES
532
533 CLEANFILES = gdbus-test-codegen-generated.[ch] gdbus-test-codegen-generated-doc-*.xml
534
535 DISTCLEANFILES = \
536         applications/mimeinfo.cache     \
537         org.gtk.test.enums.xml          \
538         de/LC_MESSAGES/test.mo          \
539         test.mo                         \
540         gsettings.store                 \
541         gschemas.compiled
542
543 distclean-local:
544         rm -r xdgdatahome xdgdatadir